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.
- : Boolean!
- # Unique identifier of entity.
- : ID!
- # Specifies if the entity is considered deleted.
- : Boolean
- # Last modification time.
- : DateTime
- # Creation time.
- : DateTime
- # Account the tag is attached to, or empty when not attached to an account.
- : AccountEntity
- # Appointment the tag is attached to, or empty when not attached to an
- # appointment.
- : AppointmentEntity
- # Contact the tag is attached to, or empty when not attached to a contact.
- : ContactEntity
- # Email the tag is attached to, or empty when not attached to an email.
- : EmailEntity
- # Lead the tag is attached to, or empty when not attached to a lead.
- : LeadEntity
- # Opportunity the tag is attached to, or empty when not attached to an
- # opportunity.
- : OpportunityEntity
- # Sales process the tag is attached to, or empty when not attached to a process.
- : ProcessEntity
- # Project the tag is attached to, or empty when not attached to a project.
- : ProjectEntity
- # Tag being attached to the record.
- : TagEntity
- # Task the tag is attached to, or empty when not attached to a task.
- : TaskEntity
- # Id of the linked account.
- : ID
- # Id of the linked appointment.
- : ID
- # Id of the linked contact.
- : ID
- # Id of the linked email.
- : ID
- # Id of the linked lead.
- : ID
- # Id of the linked opportunity.
- : ID
- # Id of the linked sales process.
- : ID
- # Id of the linked project.
- : ID
- # Id of the tag.
- : ID!
- # Id of the linked task.
- : ID
- # Revision when entity was lastly changed.
- : Int
- # Checks which permissions current user has on concrete entity instance.
- #
- # Arguments
- # permissions: [Not documented]
- (: [EntityPermsEnum!]!): [EntityPermsEnum!]!
- }