INPUT_OBJECT

CreateTagInput

link GraphQL Schema definition

  • input CreateTagInput {
  • clientMutationId: String
  • # Last modification time.
  • modified: DateTime
  • # Creation time.
  • created: DateTime
  • # Generic field wrapping sqlalchemy column, configurable by constructor.
  • #
  • # Good for one-of fields / generated fields.
  • #
  • color: Int!
  • # Relation to single entity instance.
  • creatorId: ID
  • # Name of the entity and its default text representation.
  • name: String!
  • # Bit Flag field, with limited combination of integer values.
  • #
  • # Options:
  • # Contact = 1 (0b00001)
  • # Account = 2 (0b00010)
  • # Opportunity = 4 (0b00100)
  • # Lead = 8 (0b01000)
  • # Project = 16 (0b10000)
  • supportedEntities: Int
  • # Boolean value.
  • useLang: Boolean
  • # Revision when entity was lastly changed.
  • revision: Int
  • }

link Require by