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

PrimitiveValueListNode

This node is basically just a performance optimization over the normal ValueListNode. The queries often contain large arrays of primitive values (for example in a where in list) and we don't want to create a ValueNode for each item in those lists.

interface PrimitiveValueListNode extends OperationNode {
readonly kind: "PrimitiveValueListNode";
readonly values: ReadonlyArray<unknown>;
}
const PrimitiveValueListNode: Readonly<{
create(values: ReadonlyArray<unknown>): PrimitiveValueListNode;
}
>
;

§Extends

§Properties

§
readonly kind: "PrimitiveValueListNode"
[src]
§
readonly values: ReadonlyArray<unknown>
[src]