OBJECT

PropertyTag

PropertyTag

link GraphQL Schema definition

  • type PropertyTag {
  • # address of the PropertyTag
  • #
  • # 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.
  • addresses(after: String, before: String, first: Int, last: Int): AddressConnection
  • # When the property tag was created
  • createdAt: ISO8601DateTime!
  • # ID of the PropertyTag
  • id: ID!
  • # name of the PropertyTag
  • name: String!
  • # properties of the PropertyTag
  • #
  • # 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.
  • properties(after: String, before: String, first: Int, last: Int): PropertyConnection
  • # When the property tag was last updated
  • updatedAt: ISO8601DateTime!
  • }