INPUT_OBJECT
UpdateTagInput
link GraphQL Schema definition
- input UpdateTagInput {
- : String
- # Unique identifier of entity.
- : ID!
- # Last modification time.
- : DateTime
- # Creation time.
- : 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.
- : JSONString
- # Display color of the tag, encoded as a 24-bit RGB integer: (red << 16) | (green
- # << 8) | blue.
- : Int
- # Id of the creating user.
- : ID
- # When false, the tag is hidden in pickers and cannot be assigned to new records.
- : Boolean
- # Name of the entity and its default text representation.
- : String
- # When true, the tag name is treated as a translation key and localized in the UI;
- # otherwise the literal name is shown.
- : Boolean
- # Revision when entity was lastly changed.
- : Int
- }