OBJECT

CustomFieldGroup

Custom Field Group

link GraphQL Schema definition

  • type CustomFieldGroup {
  • # Custom field names in the Custom Field Groups
  • #
  • # 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.
  • customFieldNames(after: String, before: String, first: Int, last: Int): CustomFieldNameConnection!
  • # ID of the Custom Field Group
  • id: ID!
  • # Custom Field Group listing type scope
  • listingType: [ListingTypeEnum!]
  • # Custom Field Group name
  • name: String
  • # Custom Field Group order
  • order: Int
  • # Custom Field Group property type scope
  • propertyType: [PropertyTypeEnum!]
  • # Custom Field Group tab scope
  • tab: TabEnum
  • }