OBJECT
ClientStoryReadEntity
link GraphQL Schema definition
- type ClientStoryReadEntity {
- # 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
- # Appointment that was read. Set when activity_id resolves to an Appointment.
- : AppointmentEntity
- # Task that was read. Set when activity_id resolves to a Task.
- : TaskEntity
- # Email that was read. Set when message_id resolves to an Email.
- : EmailEntity
- # Memo that was read. Set when message_id resolves to a Memo.
- : MemoEntity
- # User who read the activity or message.
- : ClientEntity
- # Id of the read appointment or task, or empty when this read points to a message.
- : ID
- # Id of the read email or memo, or empty when this read points to an activity.
- : ID
- # When true, the user explicitly chose not to follow up on this item.
- : Boolean
- # Id of the reading user.
- : ID!
- # Timestamp the user marked the item as read.
- : DateTime!
- # Revision when entity was lastly changed.
- : Int
- # Checks which permissions current user has on concrete entity instance.
- #
- # Arguments
- # permissions: [Not documented]
- (: [EntityPermsEnum!]!): [EntityPermsEnum!]!
- }