Search:
OBJECT
School
link GraphQL Schema definition
- type School {
- : ID!
- : String!
- # Returns the District provided ID for this School
- : String
- # Returns a paginated resource of students that belong to the company. You can
- # only query students on one company at a time. If you sort by last name, you may
- # receive the same student on multiple pages to resolve amgibuity in last names.
- #
- # Arguments
- # ID: [Not documented]
- # Term: [Not documented]
- # Sort: [Not documented]
- # first: [Not documented]
- # after: [Not documented]
- (: ID, : String, : StudentOrderBy, : Int, : ID): StudentsConnection
- }