OBJECT

SharedCollectionHistoryList

link GraphQL Schema definition

1type SharedCollectionHistoryList implements Page {
2
3# Count of records in this page. Will be less than or equal to `limit`.
4count: Int
5
6# Offset used in the query that generated this page.
7offset: Int!
8
9# Limit used in the query that generated this page.
10limit: Int!
11
12# List of shared collection history records
13records: [SharedCollectionHistory]
14
15}