OBJECT

DepartmentConnection

A connection to a list of items.

link GraphQL Schema definition

1type DepartmentConnection {
2
3# Information to aid in pagination.
4pageInfo: PageInfo!
5
6# A list of edges.
7edges: [DepartmentEdge]
8
9}