GraphqlRequest
import type { GraphqlRequest } from "https://googleapis.deno.dev/v1/firebasedataconnect:v1.ts";
The GraphQL request to Firebase Data Connect. It strives to match the GraphQL over HTTP spec. https://github.com/graphql/graphql-over-http/blob/main/spec/GraphQLOverHTTP.md#post
interface GraphqlRequest {
extensions?: GraphqlRequestExtensions;
operationName?: string;
query?: string;
variables?: {};
}[key: string]: any;
§Properties
§
extensions?: GraphqlRequestExtensions
[src]Optional. Additional GraphQL request information.
§
operationName?: string
[src]Optional. The name of the GraphQL operation name. Required only if query
contains multiple operations. See
https://graphql.org/learn/queries/#operation-name.