OBJECT
TagEntity
link GraphQL Schema definition
- type TagEntity {
- # Tells if the entity instance is protected against delete (Entities that need to
- # be present in the system at any time). Delete action still may fail if entity is
- # deletable, due some other additional validations.
- : Boolean!
- # Unique identifier of entity.
- : ID!
- # Specifies if the entity is considered deleted.
- : Boolean
- # Last modification time.
- : DateTime
- # Creation time.
- : DateTime
- # User who created the tag.
- : ClientEntity
- : [UUID]
- # 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!
- # Bit flag of entity kinds the tag can be attached to (Contact, Account,
- # Opportunity, Lead, Project, Email, Process, Appointment, Task).
- : Int
- # 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
- # Checks which permissions current user has on concrete entity instance.
- #
- # Arguments
- # permissions: [Not documented]
- (: [EntityPermsEnum!]!): [EntityPermsEnum!]!
- }