INPUT_OBJECT

UpdateTagInput

link GraphQL Schema definition

  • input UpdateTagInput {
  • clientMutationId: String
  • # Unique identifier of entity.
  • id: ID!
  • # Last modification time.
  • modified: DateTime
  • # Creation time.
  • created: DateTime
  • # For tags scoped to specific record types (e.g. specific Account types), the list
  • # of type ids the tag can be assigned to. Empty/null means no per-type
  • # restriction.
  • allowedEntityTypeIds: JSONString
  • # Display color of the tag, encoded as a 24-bit RGB integer: (red << 16) | (green
  • # << 8) | blue.
  • color: Int
  • # Id of the creating user.
  • creatorId: ID
  • # When false, the tag is hidden in pickers and cannot be assigned to new records.
  • isEnabled: Boolean
  • # Name of the entity and its default text representation.
  • name: String
  • # When true, the tag name is treated as a translation key and localized in the UI;
  • # otherwise the literal name is shown.
  • useLang: Boolean
  • # Revision when entity was lastly changed.
  • revision: Int
  • }

link Require by