OBJECT

SharedCollectionHistory

Provides status information on the creation or update of a shared collection.

link GraphQL Schema definition

1type SharedCollectionHistory {
2
3# History ID
4id: ID!
5
6# Type of history record, New, AddMention, or RemoveMention
7type: String!
8
9# The folder ID for the new or updated shared collection
10folderId: ID!
11
12# The share ID of the shared collection
13shareId: ID!
14
15# The status of the shared collection creation or update
16# Options: New, InProgress, Complete, Failed
17status: SharedCollectionHistoryStatus!
18
19mentionId: ID
20
21# Number of times the creation or update has been retried
22retryCount: Int
23
24# Creation date of this history record
25createdDateTime: DateTime!
26
27# Last modified date of this history record
28modifiedDateTime: DateTime!
29
30}