QueryResult

Interface QueryResult

The result of a Query that has been executed via the QueryAPI. The data property is an array with one entry for each node that matches the query conditions. Each entry is an array containing the values specified by the selectors of the query.

The errors property contains error codes of any errors that occurred during query execution. If one or more errors have occurred, the result data must be considered incomplete.

interface QueryResult {
    data: any[];
    errors: any[];
}
Index

Properties

Properties

data: any[]
errors: any[]