Entities
Entities is the backbone of the data model and translate into the db schema
Last updated
Entities is the backbone of the data model and translate into the db schema
Last updated
"It is just a boring nine-five person"
type Person @entity {
name: String!
married: Boolean
age: Int
"one person, one account, one life"
account: Bytes! @unique
salary: BigInt
interests: [String]
}