JSON Result Structure
export interface GraphqlPaginatedResult {
data: {
[datasetName: string]: {
/** result set of data objects (array of data) */
nodes: any[];
/** Total count of items in the table (needed for the Pagination to work) */
totalCount: number;
}
};
/** Some metrics of the last executed query (startTime, endTime, executionTime, itemCount, totalItemCount) */
metrics?: Metrics;
}export interface GraphqlResult {
data: {
[datasetName: string]: any[];
};
/** Some metrics of the last executed query (startTime, endTime, executionTime, itemCount, totalItemCount) */
metrics?: Metrics;
}ResultSet
Last updated