OBJECT
EmailMailboxRelationEntity
Table for representing relation between email and its mailbox - mailbox_id is FK to cp.clients_settings_eav.id
link GraphQL Schema definition
- type EmailMailboxRelationEntity {
- # 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
- # Email that belongs to the mailbox.
- : EmailEntity
- # Field whose values are strictly defined with an enumeration of values.
- : EmailDirectionEnum
- # Creation time.
- : DateTime
- # Id of the email that belongs to the mailbox.
- : ID!
- # Denormalized flag indicating that the related email has been deleted from this
- # mailbox; such relations are hidden from the inbox view.
- : Boolean
- # Error code for the email in this mailbox; 0 means the email was processed
- # without error.
- : Int
- # Field whose values are strictly defined with an enumeration of values.
- : EmailEventTypeFlagEnum
- # Whether the email is scheduled to be sent at a future time and has not been sent
- # yet.
- : Boolean
- # Id of the mailbox (connected email account) the email belongs to.
- : ID!
- # Time when the email was sent, or its scheduled send time if it has not been sent
- # yet.
- : DateTime
- # Id of the email thread, or the id of the email itself when it does not belong to
- # a thread.
- : ID
- # Field whose values are strictly defined with an enumeration of values.
- : EmailTypeEnum
- # Checks which permissions current user has on concrete entity instance.
- #
- # Arguments
- # permissions: [Not documented]
- (: [EntityPermsEnum!]!): [EntityPermsEnum!]!
- }