@twilio/flex-sdk
    Preparing search index...

    Interface DocumentNode

    The root AST node for a parsed GraphQL document.

    interface DocumentNode {
        definitions: readonly DefinitionNode[];
        kind: DOCUMENT;
        loc?: Location;
        tokenCount?: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    definitions: readonly DefinitionNode[]

    Top-level executable and type-system definitions in this document.

    kind: DOCUMENT

    The discriminator identifying the concrete AST or introspection kind.

    loc?: Location

    The source location for this AST node, if location tracking was enabled.

    tokenCount?: number

    The number of lexical tokens parsed for this document, if token counting was enabled.