Search:

OBJECT

School

link GraphQL Schema definition

  • type School {
  • CompanyID: ID!
  • Name: String!
  • # Returns the District provided ID for this School
  • ExternalID: 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]
  • Students(ID: ID, Term: String, Sort: StudentOrderBy, first: Int, after: ID): StudentsConnection
  • }
Go Live