OBJECT

Query

link GraphQL Schema definition

  • type Query {
  • company: Company
  • # Arguments
  • # id: [Not documented]
  • contact(id: ID!): Contact
  • # Arguments
  • # after: Returns the elements in the list that come after the
  • # specified cursor.
  • # before: Returns the elements in the list that come before the
  • # specified cursor.
  • # first: Returns the first _n_ elements from the list.
  • # last: Returns the last _n_ elements from the list.
  • # name: [Not documented]
  • # number: [Not documented]
  • # tags: [Not documented]
  • # orderBy: [Not documented]
  • contacts(
  • after: String,
  • before: String,
  • first: Int,
  • last: Int,
  • name: String,
  • number: String,
  • tags: [String!],
  • orderBy: String
  • ): ContactConnection
  • # Arguments
  • # id: [Not documented]
  • employee(id: ID): Employee
  • # Arguments
  • # after: Returns the elements in the list that come after the
  • # specified cursor.
  • # before: Returns the elements in the list that come before the
  • # specified cursor.
  • # first: Returns the first _n_ elements from the list.
  • # last: Returns the last _n_ elements from the list.
  • employees(after: String, before: String, first: Int, last: Int): EmployeeConnection
  • # Arguments
  • # id: [Not documented]
  • group(id: ID!): Group
  • # Arguments
  • # after: Returns the elements in the list that come after the
  • # specified cursor.
  • # before: Returns the elements in the list that come before the
  • # specified cursor.
  • # first: Returns the first _n_ elements from the list.
  • # last: Returns the last _n_ elements from the list.
  • groups(after: String, before: String, first: Int, last: Int): GroupConnection
  • integrations: [Integration!]
  • # Arguments
  • # after: Returns the elements in the list that come after the
  • # specified cursor.
  • # before: Returns the elements in the list that come before the
  • # specified cursor.
  • # first: Returns the first _n_ elements from the list.
  • # last: Returns the last _n_ elements from the list.
  • smileys(after: String, before: String, first: Int, last: Int): SmileyConnection
  • }

link Require by

This element is not required by anyone