OBJECT
EmailThreadMailboxClientReadStateEntity
link GraphQL Schema definition
- type EmailThreadMailboxClientReadStateEntity {
- # 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
- # User whose read state of the email thread is tracked.
- : ClientEntity
- # Id of the user whose read state of the email thread is tracked.
- : ID!
- # Time when the user last read the email thread in the mailbox.
- : DateTime
- # Id of the mailbox (connected email account) the email thread belongs to.
- : ID!
- # Id of the email thread, or the id of the email itself when it does not belong to
- # a thread.
- : ID!
- # Checks which permissions current user has on concrete entity instance.
- #
- # Arguments
- # permissions: [Not documented]
- (: [EntityPermsEnum!]!): [EntityPermsEnum!]!
- }