OBJECT

AssetList

link GraphQL Schema definition

1type AssetList implements Page {
2
3records: [Asset]
4
5# The starting index for records that were returned in this query.
6offset: Int!
7
8limit: Int!
9
10# Number of records returned in this response
11count: Int
12
13}