The Goodies
The output schema automatically supports OpenCRUD filtering, pagination and ordering
Filtering
type Person @entity {
name: String!
married: Boolean
age: Int
account: Bytes! @unique
salary: BigInt
interests: [String]
}query {
persons(where: { name_startsWith: "Joh", age_gt: 20 }) {
name
}
}Pagination
Ordering
Last updated