@vnodes/graphql
    Preparing search index...

    Interface InputTypeOptions

    Interface defining options that can be passed to @InputType() decorator.

    interface InputTypeOptions {
        description?: string;
        isAbstract?: boolean;
        isOneOf?: boolean;
    }
    Index

    Properties

    description?: string

    Description of the input type.

    isAbstract?: boolean

    If true, type will not be registered in the schema.

    isOneOf?: boolean

    If 'true', the input type will be '@oneOf' type. More info about '@oneOf' types in the GraphQL spec.