OBJECT

TagRelationEntity

link GraphQL Schema definition

  • type TagRelationEntity {
  • # 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
  • # Account the tag is attached to, or empty when not attached to an account.
  • account: AccountEntity
  • # Appointment the tag is attached to, or empty when not attached to an
  • # appointment.
  • appointment: AppointmentEntity
  • # Contact the tag is attached to, or empty when not attached to a contact.
  • contact: ContactEntity
  • # Email the tag is attached to, or empty when not attached to an email.
  • email: EmailEntity
  • # Lead the tag is attached to, or empty when not attached to a lead.
  • lead: LeadEntity
  • # Opportunity the tag is attached to, or empty when not attached to an
  • # opportunity.
  • oppty: OpportunityEntity
  • # Sales process the tag is attached to, or empty when not attached to a process.
  • process: ProcessEntity
  • # Project the tag is attached to, or empty when not attached to a project.
  • project: ProjectEntity
  • # Tag being attached to the record.
  • tag: TagEntity
  • # Task the tag is attached to, or empty when not attached to a task.
  • task: TaskEntity
  • # Id of the linked account.
  • accountId: ID
  • # Id of the linked appointment.
  • appointmentId: ID
  • # Id of the linked contact.
  • contactId: ID
  • # Id of the linked email.
  • emailId: ID
  • # Id of the linked lead.
  • leadId: ID
  • # Id of the linked opportunity.
  • opptyId: ID
  • # Id of the linked sales process.
  • processId: ID
  • # Id of the linked project.
  • projectId: ID
  • # Id of the tag.
  • tagId: ID!
  • # Id of the linked task.
  • taskId: ID
  • # 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!]!
  • }