OBJECT

DatasetQueryCursor

link GraphQL Schema definition

1type DatasetQueryCursor {
2
3# Cursor Id of the query.
4cursorId: ID
5
6# Dataset Id of the query.
7datasetId: ID
8
9# Total Number of records present in the dataset
10rowcount: Int
11
12# The starting index for records that were returned in this query.
13offset: Int
14
15isDone: Boolean
16
17data: [DatasetRow]
18
19}

link Required by

This element is not required by anyone