Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

QueryResult

import type { QueryResult } from "https://googleapis.deno.dev/v1/cloudasset:v1.ts";

Execution results of the query. The result is formatted as rows represented by BigQuery compatible [schema]. When pagination is necessary, it will contains the page token to retrieve the results of following pages.

interface QueryResult {
nextPageToken?: string;
rows?: {
[key: string]: any;
}
[]
;
schema?: TableSchema;
totalRows?: bigint;
}

§Properties

§
nextPageToken?: string
[src]

Token to retrieve the next page of the results.

§
rows?: {
[key: string]: any;
}
[]
[src]

Each row hold a query result in the format of Struct.

§

Describes the format of the [rows].

§
totalRows?: bigint
[src]

Total rows of the whole query results.