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.
  • isDeleteProtected: Boolean!
  • # Unique identifier of entity.
  • id: ID!
  • # Specifies if the entity is considered deleted.
  • isDeleted: Boolean
  • # Last modification time.
  • modified: DateTime
  • # Creation time.
  • created: DateTime
  • # User who created the tag.
  • creator: ClientEntity
  • allowedEntityTypeIds: [UUID]
  • # 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!
  • # Bit flag of entity kinds the tag can be attached to (Contact, Account,
  • # Opportunity, Lead, Project, Email, Process, Appointment, Task).
  • supportedEntities: Int
  • # 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
  • # Checks which permissions current user has on concrete entity instance.
  • #
  • # Arguments
  • # permissions: [Not documented]
  • instancePermissions(permissions: [EntityPermsEnum!]!): [EntityPermsEnum!]!
  • }