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

QueryList

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

A list of queries to run on a cluster.

interface QueryList {
queries?: string[];
}

§Properties

§
queries?: string[]
[src]

Required. The queries to execute. You do not need to end a query expression with a semicolon. Multiple queries can be specified in one string by separating each with a semicolon. Here is an example of a Dataproc API snippet that uses a QueryList to specify a HiveJob: "hiveJob": { "queryList": { "queries": [ "query1", "query2", "query3;query4", ] } }