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