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

CreateSchemaNode

interface CreateSchemaNode extends OperationNode {
readonly ifNotExists?: boolean;
readonly kind: "CreateSchemaNode";
readonly schema: IdentifierNode;
}
const CreateSchemaNode: Readonly<{
is(node: OperationNode): node is CreateSchemaNode;
create(schema: string, params?: CreateSchemaNodeParams): CreateSchemaNode;
cloneWith(createSchema: CreateSchemaNode, params: CreateSchemaNodeParams): CreateSchemaNode;
}
>
;

§Extends

§Properties

§
readonly ifNotExists?: boolean
[src]
§
readonly kind: "CreateSchemaNode"
[src]
§
readonly schema: IdentifierNode
[src]