Entities
Entities is the backbone of the data model and translate into the db schema
Last updated
Was this helpful?
Entities is the backbone of the data model and translate into the db schema
Last updated
Was this helpful?
Entities are the top-level type definitions in the input schema marked with the @entity
directive. Entity fields are normally built-in scalar types but can also be
an array of primitive types
an ,
an
an
All entities have an auto-generated ID
field which is reserved and cannot be used in the input schema.
The following scalar types are supported:
Boolean
String
Int
Float
BigInt
supports arbitrarily large numbers and is useful for representing e.g. large numbers uint256
Bytes
Arrays follow the GraphQL .
By default, each field is nullable. To indicate a no-null constraint mark the field with !
If a property must be unique across all entities of the given type, mark it with a built-in @unique
directive
Schema comments are natively supported and are propagated to the output schema