@vnodes/graphql
    Preparing search index...

    Interface BuildSchemaOptions

    interface BuildSchemaOptions {
        addNewlineAtEnd?: boolean;
        dateScalarMode?: DateScalarMode;
        directives?: GraphQLDirective[];
        fieldMiddleware?: FieldMiddleware<
            any,
            any,
            { [argName: string]: any },
            any,
        >[];
        noDuplicatedFields?: boolean;
        numberScalarMode?: NumberScalarMode;
        orphanedTypes?: (object | Function)[];
        scalarsMap?: ScalarsTypeMap[];
        skipCheck?: boolean;
    }
    Index

    Properties

    addNewlineAtEnd?: boolean

    Add new line at the end of the generated GraphQL SDL file

    dateScalarMode?: DateScalarMode

    Date scalar mode

    'isoDate'
    
    directives?: GraphQLDirective[]

    GraphQL directives

    fieldMiddleware?: FieldMiddleware<any, any, { [argName: string]: any }, any>[]

    Array of global field middleware functions

    noDuplicatedFields?: boolean

    Set to true if it should throw an error when the same Query / Mutation field is defined more than once

    numberScalarMode?: NumberScalarMode

    Number scalar mode

    'float'
    
    orphanedTypes?: (object | Function)[]

    Orphaned type classes/enums that are not explicitly used in GraphQL types definitions

    scalarsMap?: ScalarsTypeMap[]

    Scalars map

    skipCheck?: boolean

    Disable checking on build the correctness of a schema