OBJECT

CustomFieldName

link GraphQL Schema definition

  • type CustomFieldName {
  • # This represents custom field values (Predefined values)
  • allowedValues: [String!]
  • customFieldGroup: CustomFieldGroup
  • customFieldValueCount: Int
  • # 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.
  • customFieldValues(
  • after: String,
  • before: String,
  • first: Int,
  • last: Int
  • ): CustomFieldConnection
  • fieldType: CustomFieldTypeEnum!
  • id: ID!
  • isRequired: Boolean
  • key: String!
  • model: CustomFieldNameModelEnum!
  • name: String!
  • position: Int
  • visibleToVendor: Boolean
  • }