Skip to main content
Version: Next

Experimental features

warning

Experimental features should not be used in production environments, as their stability is uncertain and they may receive breaking changes in upcoming releases.

"Experimental Features" are cutting-edge additions to Serverpod that are currently under development or testing. These features allow developers to explore new functionalities and provide feedback, helping shape the future of Serverpod. However, they may not be fully stable or complete and are subject to change.

By default, experimental features are disabled. To opt into using them, include the --experimental-features flag when running the serverpod command:

$ serverpod generate --experimental-features=all

The current options you can pass are:

FeatureDescription
allEnables all available experimental features.
inheritanceAllows using the extends keyword in your model files to create class hierarchies.
testToolsGenerates the Serverpod test tools, see the testing get started page for more information.

Inheritance

Inheritance allows you to define class hierarchies in your model files by sharing fields between parent and child classes, simplifying class structures and promoting consistency by avoiding duplicate field definitions.

class: ParentClass
fields:
name: String
class: ChildClass
extends: ParentClass
fields:
int: age

This will generate a class with both name and age field.

class ChildClass extends ParentClass {
String name
int age
}
info

The extends keyword does not work for models with a table field.