OBJECT
GrantCollection
link GraphQL Schema definition
- type GrantCollection {
- # 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
- : [Grant!]
- # total number of records
- : Int!
- # total number of pages
- : Int!
- }