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

ParseOptions

Configuration options to control parser behavior

interface ParseOptions {
allowLegacyFragmentVariables?: boolean;
maxTokens?: number | undefined;
noLocation?: boolean;
}

§Properties

§
allowLegacyFragmentVariables?: boolean
[src]
§
maxTokens?: number | undefined
[src]

Parser CPU and memory usage is linear to the number of tokens in a document however in extreme cases it becomes quadratic due to memory exhaustion. Parsing happens before validation so even invalid queries can burn lots of CPU time and memory. To prevent this you can set a maximum number of tokens allowed within a document.

§
noLocation?: boolean
[src]

By default, the parser creates AST nodes that know the location in the source that they correspond to. This configuration flag disables that behavior for performance or testing.