OBJECT
MessageRelationEntity
link GraphQL Schema definition
- type MessageRelationEntity {
- # 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 message is linked to, or empty when not linked to an account.
- : AccountEntity
- # Contact the message is linked to, or empty when not linked to a contact.
- : ContactEntity
- # Custom entity record the message is linked to, or empty when not linked.
- : CustomEntityEntity
- # Lead the message is linked to. Set when lead_oppty_id resolves to a Lead;
- # otherwise empty.
- : LeadEntity
- # Opportunity the message is linked to. Set when lead_oppty_id resolves to an
- # Opportunity; otherwise empty.
- : OpportunityEntity
- # Email side of the link. Set when message_id resolves to an Email; otherwise
- # empty.
- : EmailEntity
- # Memo side of the link. Set when message_id resolves to a Memo; otherwise empty.
- : MemoEntity
- # Project the message is linked to, or empty when not linked.
- : ProjectEntity
- # Quote the message is linked to, or empty when not linked.
- : QuoteEntity
- # Id of the linked account.
- : ID
- # Id of the linked contact.
- : ID
- # Id of the linked custom entity record.
- : ID
- # Id of the lead or opportunity the message is linked to, or empty when not
- # linked.
- : ID
- # Id of the email or memo on this link.
- : ID!
- # Id of the linked project.
- : ID
- # Id of the linked quote.
- : ID
- # Revision when entity was lastly changed.
- : Int
- # Checks which permissions current user has on concrete entity instance.
- #
- # Arguments
- # permissions: [Not documented]
- (: [EntityPermsEnum!]!): [EntityPermsEnum!]!
- }