@vnodes/graphql
    Preparing search index...

    Interface InterfaceTypeOptions

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

    interface InterfaceTypeOptions {
        description?: string;
        implements?: Function | Function[] | (() => Function | Function[]);
        isAbstract?: boolean;
        resolveType?: ResolveTypeFn<any, any>;
    }
    Index

    Properties

    description?: string

    Description of the argument.

    implements?: Function | Function[] | (() => Function | Function[])

    Interfaces implemented by this interface.

    isAbstract?: boolean

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

    resolveType?: ResolveTypeFn<any, any>

    Custom implementation of the "resolveType" function.