OBJECT
OrganisationCollection
link GraphQL Schema definition
- type OrganisationCollection {
- # current page in the paginated collection
- : Int!
- # true if this is the first page, false otherwise
- : Boolean!
- # true if this is the last page, false otherwise
- : Boolean!
- # number of records per page
- : Int!
- # records returned by the search
- : [Organisation!]
- # total number of records
- : Int!
- # total number of pages
- : Int!
- }