OBJECT

Country

Country information.

link GraphQL Schema definition

  • type Country implements Node {
  • # Two-letter UPPERCASE country code, e.g. "DE"
  • code: String!
  • id: ID!
  • # Country name, e.g. "Germany"
  • name: String!
  • # States of this country.
  • #
  • # 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.
  • states(after: String, before: String, first: Int, last: Int): StatesConnection
  • }