You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
contract Test {
roles {
root
customer
}
// inspired by TypeScript union syntax
query
| {
properties {
type const @value("by_name")
name str
}
}
| {
properties {
val const @value("by_age")
age int
}
}
}
Contracts are DTOs plus access control directives: https://github.com/aeria-org/aeria/blob/9c98734bc5d89831d9fce8980abc4a9fa870601f/packages/types/src/contract.ts#L20
Simplest form:
Outputs:
With unions:
Outputs:
The text was updated successfully, but these errors were encountered: