@nestjs/graphql

  • Version 12.1.1
  • Published
  • 544 kB
  • 14 dependencies
  • MIT license

Install

npm i @nestjs/graphql
yarn add @nestjs/graphql
pnpm add @nestjs/graphql

Overview

Nest - modern, fast, powerful node.js web framework (@graphql)

Index

Variables

Functions

Classes

Interfaces

Type Aliases

Variables

variable CLASS_TYPE_METADATA

const CLASS_TYPE_METADATA: string;

    variable CONTEXT

    const CONTEXT: string;

      variable DEFINITIONS_FILE_HEADER

      const DEFINITIONS_FILE_HEADER: string;

        variable FIELD_RESOLVER_MIDDLEWARE_METADATA

        const FIELD_RESOLVER_MIDDLEWARE_METADATA: string;

          variable FIELD_TYPENAME

          const FIELD_TYPENAME: string;

            variable Float

            const Float: any;

              variable GRAPHQL_MODULE_ID

              const GRAPHQL_MODULE_ID: string;

                variable GRAPHQL_MODULE_OPTIONS

                const GRAPHQL_MODULE_OPTIONS: string;

                  variable GRAPHQL_SDL_FILE_HEADER

                  const GRAPHQL_SDL_FILE_HEADER: string;

                    variable GraphQLISODateTime

                    const GraphQLISODateTime: GraphQLScalarType<Date, string>;

                      variable GraphQLTimestamp

                      const GraphQLTimestamp: GraphQLScalarType<any, number>;

                        variable ID

                        const ID: any;

                          variable Int

                          const Int: any;

                            variable PARAM_ARGS_METADATA

                            const PARAM_ARGS_METADATA: string;

                              variable RESOLVER_DELEGATE_METADATA

                              const RESOLVER_DELEGATE_METADATA: string;

                                variable RESOLVER_NAME_METADATA

                                const RESOLVER_NAME_METADATA: string;

                                  variable RESOLVER_PROPERTY_METADATA

                                  const RESOLVER_PROPERTY_METADATA: string;

                                    variable RESOLVER_REFERENCE_KEY

                                    const RESOLVER_REFERENCE_KEY: string;

                                      variable RESOLVER_REFERENCE_METADATA

                                      const RESOLVER_REFERENCE_METADATA: string;

                                        variable RESOLVER_TYPE_METADATA

                                        const RESOLVER_TYPE_METADATA: string;

                                          variable SCALAR_NAME_METADATA

                                          const SCALAR_NAME_METADATA: string;

                                            variable SCALAR_TYPE_METADATA

                                            const SCALAR_TYPE_METADATA: string;

                                              variable SUBSCRIPTION_OPTIONS_METADATA

                                              const SUBSCRIPTION_OPTIONS_METADATA: string;

                                                variable SUBSCRIPTION_TYPE

                                                const SUBSCRIPTION_TYPE: string;

                                                  variable TypeMetadataStorage

                                                  const TypeMetadataStorage: TypeMetadataStorageHost;

                                                    Functions

                                                    function addFieldMetadata

                                                    addFieldMetadata: <T extends unknown>(
                                                    typeOrOptions: ReturnTypeFunc<T> | FieldOptionsExtractor<T>,
                                                    fieldOptions: FieldOptionsExtractor<T>,
                                                    prototype: Object,
                                                    propertyKey?: string,
                                                    descriptor?: TypedPropertyDescriptor<any>,
                                                    loadEagerly?: boolean
                                                    ) => void;

                                                      function Args

                                                      Args: {
                                                      (): ParameterDecorator;
                                                      (...pipes: any[]): ParameterDecorator;
                                                      (property: string, ...pipes: any[]): ParameterDecorator;
                                                      (options: ArgsOptions<any>, ...pipes: any[]): ParameterDecorator;
                                                      (
                                                      property: string,
                                                      options: ArgsOptions<any>,
                                                      ...pipes: any[]
                                                      ): ParameterDecorator;
                                                      };
                                                      • Resolver method parameter decorator. Extracts the arguments object from the underlying platform and populates the decorated parameter with the value of either all arguments or a single specified argument.

                                                      function ArgsType

                                                      ArgsType: () => ClassDecorator;
                                                      • Decorator that marks a class as a resolver arguments type.

                                                      function Context

                                                      Context: {
                                                      (): ParameterDecorator;
                                                      (...pipes: any[]): ParameterDecorator;
                                                      (property: string, ...pipes: any[]): ParameterDecorator;
                                                      };
                                                      • Resolver method parameter decorator. Extracts the Context object from the underlying platform and populates the decorated parameter with the value of Context.

                                                      function createUnionType

                                                      createUnionType: <T extends readonly Type<unknown>[] = Type<unknown>[]>(
                                                      options: UnionOptions<T>
                                                      ) => Union<T>;
                                                      • Creates a GraphQL union type composed of types references.

                                                        Parameter options

                                                      function Directive

                                                      Directive: (sdl: string) => MethodDecorator & PropertyDecorator & ClassDecorator;
                                                      • Adds a directive to specified field, type, or handler.

                                                      function extend

                                                      extend: (obj1: unknown, obj2: unknown) => any;

                                                        function Extensions

                                                        Extensions: (
                                                        value: Record<string, unknown>
                                                        ) => MethodDecorator & ClassDecorator & PropertyDecorator;
                                                        • Adds arbitrary data accessible through the "extensions" property to specified field, type, or handler.

                                                        function Field

                                                        Field: {
                                                        (): PropertyDecorator & MethodDecorator;
                                                        <T extends unknown>(options: FieldOptionsExtractor<T>): PropertyDecorator &
                                                        MethodDecorator;
                                                        <T extends unknown>(
                                                        returnTypeFunction?: ReturnTypeFunc<T>,
                                                        options?: FieldOptionsExtractor<T>
                                                        ): PropertyDecorator & MethodDecorator;
                                                        };
                                                        • @Field() decorator is used to mark a specific class property as a GraphQL field. Only properties decorated with this decorator will be defined in the schema.

                                                        function HideField

                                                        HideField: () => PropertyDecorator;

                                                          function Info

                                                          Info: (...pipes: (Type<PipeTransform> | PipeTransform)[]) => ParameterDecorator;
                                                          • Resolver method parameter decorator. Extracts the Info object from the underlying platform and populates the decorated parameter with the value of Info.

                                                          function InputType

                                                          InputType: {
                                                          (): ClassDecorator;
                                                          (options: InputTypeOptions): ClassDecorator;
                                                          (name: string, options?: InputTypeOptions): ClassDecorator;
                                                          };
                                                          • Decorator that marks a class as a GraphQL input type.

                                                          function InterfaceType

                                                          InterfaceType: {
                                                          (options?: InterfaceTypeOptions): ClassDecorator;
                                                          (name: string, options?: InterfaceTypeOptions): ClassDecorator;
                                                          };
                                                          • Decorator that marks a class as a GraphQL interface type.

                                                          function IntersectionType

                                                          IntersectionType: <A, B>(
                                                          classARef: Type<A>,
                                                          classBRef: Type<B>,
                                                          decorator?: ClassDecoratorFactory
                                                          ) => Type<A & B>;

                                                            function Mutation

                                                            Mutation: {
                                                            (): MethodDecorator;
                                                            (name: string): MethodDecorator;
                                                            (typeFunc: ReturnTypeFunc<any>, options?: MutationOptions<any>): MethodDecorator;
                                                            };
                                                            • Mutation handler (method) Decorator. Routes specified mutation to this method.

                                                            function ObjectType

                                                            ObjectType: {
                                                            (): ClassDecorator;
                                                            (options: ObjectTypeOptions): ClassDecorator;
                                                            (name: string, options?: ObjectTypeOptions): ClassDecorator;
                                                            };
                                                            • Decorator that marks a class as a GraphQL type.

                                                            function OmitType

                                                            OmitType: <T, K extends keyof T>(
                                                            classRef: Type<T>,
                                                            keys: readonly K[],
                                                            decorator?: ClassDecoratorFactory
                                                            ) => Type<Omit<T, K>>;

                                                              function Parent

                                                              Parent: () => ParameterDecorator;
                                                              • Resolver method parameter decorator. Extracts the parent/root object from the underlying platform and populates the decorated parameter with the value of parent/root.

                                                              function PartialType

                                                              PartialType: <T>(
                                                              classRef: Type<T>,
                                                              optionsOrDecorator?: ClassDecoratorFactory | PartialTypeOptions
                                                              ) => Type<Partial<T>>;

                                                                function PickType

                                                                PickType: <T, K extends keyof T>(
                                                                classRef: Type<T>,
                                                                keys: readonly K[],
                                                                decorator?: ClassDecoratorFactory
                                                                ) => Type<Pick<T, K>>;

                                                                  function Query

                                                                  Query: {
                                                                  (): MethodDecorator;
                                                                  (name: string): MethodDecorator;
                                                                  (typeFunc: ReturnTypeFunc<any>, options?: QueryOptions<any>): MethodDecorator;
                                                                  };
                                                                  • Query handler (method) Decorator. Routes specified query to this method.

                                                                  function registerEnumType

                                                                  registerEnumType: <T extends object = any>(
                                                                  enumRef: T,
                                                                  options?: EnumOptions<T>
                                                                  ) => void;
                                                                  • Registers a GraphqQL enum type based on the passed enumerator reference.

                                                                    Parameter options

                                                                  function ResolveField

                                                                  ResolveField: {
                                                                  (typeFunc?: ReturnTypeFunc, options?: ResolveFieldOptions): MethodDecorator;
                                                                  (
                                                                  propertyName?: string,
                                                                  typeFunc?: ReturnTypeFunc<any>,
                                                                  options?: ResolveFieldOptions<any>
                                                                  ): MethodDecorator;
                                                                  };
                                                                  • Field resolver (method) Decorator.

                                                                  • Property resolver (method) Decorator.

                                                                  function ResolveProperty

                                                                  ResolveProperty: {
                                                                  (typeFunc?: ReturnTypeFunc, options?: ResolveFieldOptions): MethodDecorator;
                                                                  (
                                                                  propertyName?: string,
                                                                  typeFunc?: ReturnTypeFunc<any>,
                                                                  options?: ResolveFieldOptions<any>
                                                                  ): MethodDecorator;
                                                                  };
                                                                  • Property resolver (method) Decorator.

                                                                  function Resolver

                                                                  Resolver: {
                                                                  (): MethodDecorator & ClassDecorator;
                                                                  (name: string): MethodDecorator & ClassDecorator;
                                                                  (options: ResolverOptions): MethodDecorator & ClassDecorator;
                                                                  (classType: Function, options?: ResolverOptions): MethodDecorator &
                                                                  ClassDecorator;
                                                                  (typeFunc: ResolverTypeFn, options?: ResolverOptions): MethodDecorator &
                                                                  ClassDecorator;
                                                                  };
                                                                  • Object resolver decorator.

                                                                  function ResolveReference

                                                                  ResolveReference: () => MethodDecorator;
                                                                  • Property reference resolver (method) Decorator.

                                                                  function Root

                                                                  Root: () => ParameterDecorator;
                                                                  • Resolver method parameter decorator. Extracts the parent/root object from the underlying platform and populates the decorated parameter with the value of parent/root.

                                                                  function Scalar

                                                                  Scalar: {
                                                                  (name: string): ClassDecorator;
                                                                  (name: string, typeFunc: ReturnTypeFunc<any>): ClassDecorator;
                                                                  };
                                                                  • Decorator that marks a class as a GraphQL scalar.

                                                                  function Subscription

                                                                  Subscription: {
                                                                  (): MethodDecorator;
                                                                  (name: string): MethodDecorator;
                                                                  (
                                                                  name: string,
                                                                  options: Pick<SubscriptionOptions<any>, 'filter' | 'resolve'>
                                                                  ): MethodDecorator;
                                                                  (
                                                                  typeFunc: ReturnTypeFunc<any>,
                                                                  options?: SubscriptionOptions<any>
                                                                  ): MethodDecorator;
                                                                  };
                                                                  • Subscription handler (method) Decorator. Routes subscriptions to this method.

                                                                  function transformSchema

                                                                  transformSchema: (
                                                                  schema: GraphQLSchema,
                                                                  transformType: TypeTransformer
                                                                  ) => GraphQLSchema;

                                                                    Classes

                                                                    class AbstractGraphQLDriver

                                                                    abstract class AbstractGraphQLDriver<
                                                                    TOptions extends Record<string, any> = GqlModuleOptions
                                                                    > implements GraphQLDriver<TOptions> {}

                                                                      property applicationConfig

                                                                      protected readonly applicationConfig?: ApplicationConfig;

                                                                        property graphQlFactory

                                                                        protected readonly graphQlFactory: GraphQLFactory;

                                                                          property httpAdapterHost

                                                                          protected readonly httpAdapterHost: HttpAdapterHost;

                                                                            method generateSchema

                                                                            generateSchema: (options: TOptions) => Promise<GraphQLSchema> | null;

                                                                              method getNormalizedPath

                                                                              protected getNormalizedPath: (options: TOptions) => string;

                                                                                method mergeDefaultOptions

                                                                                mergeDefaultOptions: (
                                                                                options: TOptions,
                                                                                defaults?: Record<string, any>
                                                                                ) => Promise<TOptions>;

                                                                                  method start

                                                                                  abstract start: (options: TOptions) => Promise<unknown>;

                                                                                    method stop

                                                                                    abstract stop: () => Promise<void>;

                                                                                      method subscriptionWithFilter

                                                                                      subscriptionWithFilter: (
                                                                                      instanceRef: unknown,
                                                                                      filterFn: (
                                                                                      payload: any,
                                                                                      variables: any,
                                                                                      context: any
                                                                                      ) => boolean | Promise<boolean>,
                                                                                      createSubscribeContext: Function
                                                                                      ) => any;

                                                                                        class BaseExplorerService

                                                                                        class BaseExplorerService {}

                                                                                          method flatMap

                                                                                          flatMap: <T = ResolverMetadata>(
                                                                                          modules: Module[],
                                                                                          callback: (instance: InstanceWrapper, moduleRef: Module) => T | T[]
                                                                                          ) => T[];

                                                                                            method getModules

                                                                                            getModules: (
                                                                                            modulesContainer: Map<string, Module>,
                                                                                            include: Function[]
                                                                                            ) => Module[];

                                                                                              method groupMetadata

                                                                                              groupMetadata: (resolvers: ResolverMetadata[]) => any;

                                                                                                method includeWhitelisted

                                                                                                includeWhitelisted: (
                                                                                                modulesContainer: Map<string, Module>,
                                                                                                include: Function[]
                                                                                                ) => Module[];

                                                                                                  class FileSystemHelper

                                                                                                  class FileSystemHelper {}

                                                                                                    method getDirs

                                                                                                    getDirs: (path: string) => string[];

                                                                                                      method mkdirRecursive

                                                                                                      mkdirRecursive: (path: string) => Promise<void>;

                                                                                                        method writeFile

                                                                                                        writeFile: (path: string, content: string) => Promise<void>;

                                                                                                          class GqlArgumentsHost

                                                                                                          class GqlArgumentsHost
                                                                                                          extends ExecutionContextHost
                                                                                                          implements GraphQLArgumentsHost {}

                                                                                                            method create

                                                                                                            static create: (context: ArgumentsHost) => GqlArgumentsHost;

                                                                                                              method getArgs

                                                                                                              getArgs: <T = any>() => T;

                                                                                                                method getContext

                                                                                                                getContext: <T = any>() => T;

                                                                                                                  method getInfo

                                                                                                                  getInfo: <T = any>() => T;

                                                                                                                    method getRoot

                                                                                                                    getRoot: <T = any>() => T;

                                                                                                                      class GqlExecutionContext

                                                                                                                      class GqlExecutionContext
                                                                                                                      extends ExecutionContextHost
                                                                                                                      implements GraphQLArgumentsHost {}

                                                                                                                        method create

                                                                                                                        static create: (context: ExecutionContext) => GqlExecutionContext;

                                                                                                                          method getArgs

                                                                                                                          getArgs: <T = any>() => T;

                                                                                                                            method getContext

                                                                                                                            getContext: <T = any>() => T;

                                                                                                                              method getInfo

                                                                                                                              getInfo: <T = any>() => T;

                                                                                                                                method getRoot

                                                                                                                                getRoot: <T = any>() => T;

                                                                                                                                  method getType

                                                                                                                                  getType: <TContext extends string = any>() => TContext;

                                                                                                                                    class GqlSubscriptionService

                                                                                                                                    class GqlSubscriptionService {}

                                                                                                                                      constructor

                                                                                                                                      constructor(options: GqlSubscriptionServiceOptions, httpServer: any);

                                                                                                                                        method stop

                                                                                                                                        stop: () => Promise<void>;

                                                                                                                                          class GraphQLAstExplorer

                                                                                                                                          class GraphQLAstExplorer {}

                                                                                                                                            method addSymbolIfRoot

                                                                                                                                            addSymbolIfRoot: (name: string) => string;

                                                                                                                                              method explore

                                                                                                                                              explore: (
                                                                                                                                              documentNode: DocumentNode,
                                                                                                                                              outputPath: string,
                                                                                                                                              mode: 'class' | 'interface',
                                                                                                                                              options?: DefinitionsGeneratorOptions
                                                                                                                                              ) => Promise<SourceFile>;

                                                                                                                                                method getDefaultTypes

                                                                                                                                                getDefaultTypes: (options: DefinitionsGeneratorOptions) => {
                                                                                                                                                [type: string]: string;
                                                                                                                                                };

                                                                                                                                                  method getFieldTypeDefinition

                                                                                                                                                  getFieldTypeDefinition: (
                                                                                                                                                  typeNode: TypeNode,
                                                                                                                                                  options: DefinitionsGeneratorOptions
                                                                                                                                                  ) => { name: string; required: boolean };

                                                                                                                                                    method getFunctionParameters

                                                                                                                                                    getFunctionParameters: (
                                                                                                                                                    inputs: ReadonlyArray<InputValueDefinitionNode>,
                                                                                                                                                    options: DefinitionsGeneratorOptions
                                                                                                                                                    ) => ParameterDeclarationStructure[];

                                                                                                                                                      method getType

                                                                                                                                                      getType: (typeName: string, options: DefinitionsGeneratorOptions) => string;

                                                                                                                                                        method isRoot

                                                                                                                                                        isRoot: (name: string) => boolean;

                                                                                                                                                          method toDefinitionStructures

                                                                                                                                                          toDefinitionStructures: (
                                                                                                                                                          item: Readonly<TypeSystemDefinitionNode | TypeSystemExtensionNode>,
                                                                                                                                                          mode: 'class' | 'interface',
                                                                                                                                                          options: DefinitionsGeneratorOptions
                                                                                                                                                          ) =>
                                                                                                                                                          | ClassDeclarationStructure
                                                                                                                                                          | EnumDeclarationStructure
                                                                                                                                                          | InterfaceDeclarationStructure
                                                                                                                                                          | TypeAliasDeclarationStructure;

                                                                                                                                                            method toEnumDefinitionStructure

                                                                                                                                                            toEnumDefinitionStructure: (
                                                                                                                                                            item: EnumTypeDefinitionNode | EnumTypeExtensionNode,
                                                                                                                                                            options: DefinitionsGeneratorOptions
                                                                                                                                                            ) => TypeAliasDeclarationStructure | EnumDeclarationStructure;

                                                                                                                                                              method toMethodDeclarationStructure

                                                                                                                                                              toMethodDeclarationStructure: (
                                                                                                                                                              item: FieldDefinitionNode | InputValueDefinitionNode,
                                                                                                                                                              mode: 'class' | 'interface',
                                                                                                                                                              options: DefinitionsGeneratorOptions
                                                                                                                                                              ) => OptionalKind<MethodDeclarationStructure> &
                                                                                                                                                              OptionalKind<MethodSignatureStructure>;

                                                                                                                                                                method toObjectTypeDefinitionStructure

                                                                                                                                                                toObjectTypeDefinitionStructure: (
                                                                                                                                                                item:
                                                                                                                                                                | ObjectTypeDefinitionNode
                                                                                                                                                                | ObjectTypeExtensionNode
                                                                                                                                                                | InputObjectTypeDefinitionNode
                                                                                                                                                                | InputObjectTypeExtensionNode
                                                                                                                                                                | InterfaceTypeDefinitionNode
                                                                                                                                                                | InterfaceTypeExtensionNode,
                                                                                                                                                                mode: 'class' | 'interface',
                                                                                                                                                                options: DefinitionsGeneratorOptions
                                                                                                                                                                ) => ClassDeclarationStructure | InterfaceDeclarationStructure;

                                                                                                                                                                  method toPropertyDeclarationStructure

                                                                                                                                                                  toPropertyDeclarationStructure: (
                                                                                                                                                                  item: FieldDefinitionNode | InputValueDefinitionNode,
                                                                                                                                                                  options: DefinitionsGeneratorOptions
                                                                                                                                                                  ) => OptionalKind<PropertyDeclarationStructure> &
                                                                                                                                                                  OptionalKind<PropertySignatureStructure>;

                                                                                                                                                                    method toRootSchemaDefinitionStructure

                                                                                                                                                                    toRootSchemaDefinitionStructure: (
                                                                                                                                                                    operationTypes: ReadonlyArray<OperationTypeDefinitionNode>,
                                                                                                                                                                    mode: 'class' | 'interface'
                                                                                                                                                                    ) => ClassDeclarationStructure | InterfaceDeclarationStructure;

                                                                                                                                                                      method toScalarDefinitionStructure

                                                                                                                                                                      toScalarDefinitionStructure: (
                                                                                                                                                                      item: ScalarTypeDefinitionNode | ScalarTypeExtensionNode,
                                                                                                                                                                      options: DefinitionsGeneratorOptions
                                                                                                                                                                      ) => TypeAliasDeclarationStructure;

                                                                                                                                                                        method toUnionDefinitionStructure

                                                                                                                                                                        toUnionDefinitionStructure: (
                                                                                                                                                                        item: UnionTypeDefinitionNode | UnionTypeExtensionNode
                                                                                                                                                                        ) => TypeAliasDeclarationStructure;

                                                                                                                                                                          method unwrapTypeIfNonNull

                                                                                                                                                                          unwrapTypeIfNonNull: (type: TypeNode) => { type: TypeNode; required: boolean };

                                                                                                                                                                            class GraphQLDefinitionsFactory

                                                                                                                                                                            class GraphQLDefinitionsFactory {}

                                                                                                                                                                              property gqlAstExplorer

                                                                                                                                                                              protected readonly gqlAstExplorer: GraphQLAstExplorer;

                                                                                                                                                                                property gqlTypesLoader

                                                                                                                                                                                protected readonly gqlTypesLoader: GraphQLTypesLoader;

                                                                                                                                                                                  method exploreAndEmit

                                                                                                                                                                                  protected exploreAndEmit: (
                                                                                                                                                                                  typePaths: string[],
                                                                                                                                                                                  path: string,
                                                                                                                                                                                  outputAs: 'class' | 'interface',
                                                                                                                                                                                  isDebugEnabled: boolean,
                                                                                                                                                                                  definitionsGeneratorOptions: DefinitionsGeneratorOptions,
                                                                                                                                                                                  typeDefs?: string | string[]
                                                                                                                                                                                  ) => Promise<void>;

                                                                                                                                                                                    method generate

                                                                                                                                                                                    generate: (options: GenerateOptions) => Promise<void>;

                                                                                                                                                                                      method printMessage

                                                                                                                                                                                      protected printMessage: (text: string, isEnabled: boolean) => void;

                                                                                                                                                                                        class GraphQLFactory

                                                                                                                                                                                        class GraphQLFactory {}

                                                                                                                                                                                          constructor

                                                                                                                                                                                          constructor(
                                                                                                                                                                                          resolversExplorerService: ResolversExplorerService,
                                                                                                                                                                                          scalarsExplorerService: ScalarsExplorerService,
                                                                                                                                                                                          graphqlAstExplorer: GraphQLAstExplorer,
                                                                                                                                                                                          gqlSchemaBuilder: GraphQLSchemaBuilder
                                                                                                                                                                                          );

                                                                                                                                                                                            method generateDefinitions

                                                                                                                                                                                            generateDefinitions: (
                                                                                                                                                                                            typeDefs: string | string[],
                                                                                                                                                                                            options: GqlModuleOptions
                                                                                                                                                                                            ) => Promise<void>;

                                                                                                                                                                                              method generateSchema

                                                                                                                                                                                              generateSchema: <T extends GqlModuleOptions<any>>(
                                                                                                                                                                                              options?: T
                                                                                                                                                                                              ) => Promise<GraphQLSchema>;

                                                                                                                                                                                                class GraphQLFederationDefinitionsFactory

                                                                                                                                                                                                class GraphQLFederationDefinitionsFactory extends GraphQLDefinitionsFactory {}

                                                                                                                                                                                                  method exploreAndEmit

                                                                                                                                                                                                  protected exploreAndEmit: (
                                                                                                                                                                                                  typePaths: string[],
                                                                                                                                                                                                  path: string,
                                                                                                                                                                                                  outputAs: 'class' | 'interface',
                                                                                                                                                                                                  isDebugEnabled: boolean,
                                                                                                                                                                                                  definitionsGeneratorOptions: DefinitionsGeneratorOptions,
                                                                                                                                                                                                  typeDefs?: string | string[]
                                                                                                                                                                                                  ) => Promise<void>;

                                                                                                                                                                                                    class GraphQLFederationFactory

                                                                                                                                                                                                    class GraphQLFederationFactory {}

                                                                                                                                                                                                      constructor

                                                                                                                                                                                                      constructor(
                                                                                                                                                                                                      resolversExplorerService: ResolversExplorerService,
                                                                                                                                                                                                      scalarsExplorerService: ScalarsExplorerService,
                                                                                                                                                                                                      gqlSchemaBuilder: GraphQLSchemaBuilder,
                                                                                                                                                                                                      typeDefsDecoratorFactory: TypeDefsDecoratorFactory
                                                                                                                                                                                                      );

                                                                                                                                                                                                        method buildFederatedSchema

                                                                                                                                                                                                        buildFederatedSchema: <T extends GqlModuleOptions<any>>(
                                                                                                                                                                                                        autoSchemaFile: AutoSchemaFileValue,
                                                                                                                                                                                                        options: T,
                                                                                                                                                                                                        resolvers: Function[]
                                                                                                                                                                                                        ) => Promise<GraphQLSchema>;

                                                                                                                                                                                                          method generateSchema

                                                                                                                                                                                                          generateSchema: <T extends GqlModuleOptions<any>>(
                                                                                                                                                                                                          options?: T,
                                                                                                                                                                                                          buildFederatedSchema?: (
                                                                                                                                                                                                          options: BuildFederatedSchemaOptions
                                                                                                                                                                                                          ) => GraphQLSchema
                                                                                                                                                                                                          ) => Promise<GraphQLSchema>;

                                                                                                                                                                                                            class GraphQLModule

                                                                                                                                                                                                            class GraphQLModule<TAdapter extends AbstractGraphQLDriver = AbstractGraphQLDriver>
                                                                                                                                                                                                            implements OnModuleInit, OnModuleDestroy {}

                                                                                                                                                                                                              constructor

                                                                                                                                                                                                              constructor(
                                                                                                                                                                                                              httpAdapterHost: HttpAdapterHost,
                                                                                                                                                                                                              options: GqlModuleOptions<any>,
                                                                                                                                                                                                              _graphQlAdapter: AbstractGraphQLDriver<GqlModuleOptions<any>>,
                                                                                                                                                                                                              graphQlTypesLoader: GraphQLTypesLoader,
                                                                                                                                                                                                              gqlSchemaHost: GraphQLSchemaHost
                                                                                                                                                                                                              );

                                                                                                                                                                                                                property graphQlAdapter

                                                                                                                                                                                                                readonly graphQlAdapter: AbstractGraphQLDriver<GqlModuleOptions<any>>;

                                                                                                                                                                                                                  method forRoot

                                                                                                                                                                                                                  static forRoot: <TOptions extends Record<string, any> = GqlModuleOptions<any>>(
                                                                                                                                                                                                                  options?: TOptions
                                                                                                                                                                                                                  ) => DynamicModule;

                                                                                                                                                                                                                    method forRootAsync

                                                                                                                                                                                                                    static forRootAsync: <
                                                                                                                                                                                                                    TOptions extends Record<string, any> = GqlModuleOptions<any>
                                                                                                                                                                                                                    >(
                                                                                                                                                                                                                    options: GqlModuleAsyncOptions<TOptions, GqlOptionsFactory<TOptions>>
                                                                                                                                                                                                                    ) => DynamicModule;

                                                                                                                                                                                                                      method onModuleDestroy

                                                                                                                                                                                                                      onModuleDestroy: () => Promise<void>;

                                                                                                                                                                                                                        method onModuleInit

                                                                                                                                                                                                                        onModuleInit: () => Promise<void>;

                                                                                                                                                                                                                          class GraphQLSchemaBuilderModule

                                                                                                                                                                                                                          class GraphQLSchemaBuilderModule {}

                                                                                                                                                                                                                            class GraphQLSchemaFactory

                                                                                                                                                                                                                            class GraphQLSchemaFactory {}

                                                                                                                                                                                                                              constructor

                                                                                                                                                                                                                              constructor(
                                                                                                                                                                                                                              queryTypeFactory: QueryTypeFactory,
                                                                                                                                                                                                                              mutationTypeFactory: MutationTypeFactory,
                                                                                                                                                                                                                              subscriptionTypeFactory: SubscriptionTypeFactory,
                                                                                                                                                                                                                              orphanedTypesFactory: OrphanedTypesFactory,
                                                                                                                                                                                                                              typeDefinitionsGenerator: TypeDefinitionsGenerator
                                                                                                                                                                                                                              );

                                                                                                                                                                                                                                method create

                                                                                                                                                                                                                                create: {
                                                                                                                                                                                                                                (resolvers: Function[]): Promise<GraphQLSchema>;
                                                                                                                                                                                                                                (resolvers: Function[], scalarClasses: Function[]): Promise<GraphQLSchema>;
                                                                                                                                                                                                                                (resolvers: Function[], options: BuildSchemaOptions): Promise<GraphQLSchema>;
                                                                                                                                                                                                                                (
                                                                                                                                                                                                                                resolvers: Function[],
                                                                                                                                                                                                                                scalarClasses: Function[],
                                                                                                                                                                                                                                options: BuildSchemaOptions
                                                                                                                                                                                                                                ): Promise<GraphQLSchema>;
                                                                                                                                                                                                                                };

                                                                                                                                                                                                                                  class GraphQLSchemaHost

                                                                                                                                                                                                                                  class GraphQLSchemaHost {}

                                                                                                                                                                                                                                    property schema

                                                                                                                                                                                                                                    schema: GraphQLSchema;

                                                                                                                                                                                                                                      class GraphQLTypesLoader

                                                                                                                                                                                                                                      class GraphQLTypesLoader {}

                                                                                                                                                                                                                                        method mergeTypesByPaths

                                                                                                                                                                                                                                        mergeTypesByPaths: (paths: string | string[]) => Promise<string>;

                                                                                                                                                                                                                                          Interfaces

                                                                                                                                                                                                                                          interface AliasDirectiveImport

                                                                                                                                                                                                                                          interface AliasDirectiveImport {}

                                                                                                                                                                                                                                            property as

                                                                                                                                                                                                                                            as: string;

                                                                                                                                                                                                                                              property name

                                                                                                                                                                                                                                              name: string;

                                                                                                                                                                                                                                                interface BuildFederatedSchemaOptions

                                                                                                                                                                                                                                                interface BuildFederatedSchemaOptions {}

                                                                                                                                                                                                                                                  property resolvers

                                                                                                                                                                                                                                                  resolvers: any;

                                                                                                                                                                                                                                                    property typeDefs

                                                                                                                                                                                                                                                    typeDefs: DocumentNode;

                                                                                                                                                                                                                                                      interface BuildSchemaOptions

                                                                                                                                                                                                                                                      interface BuildSchemaOptions {}

                                                                                                                                                                                                                                                        property dateScalarMode

                                                                                                                                                                                                                                                        dateScalarMode?: DateScalarMode;
                                                                                                                                                                                                                                                        • Date scalar mode 'isoDate'

                                                                                                                                                                                                                                                        property directives

                                                                                                                                                                                                                                                        directives?: GraphQLDirective[];
                                                                                                                                                                                                                                                        • GraphQL directives

                                                                                                                                                                                                                                                        property fieldMiddleware

                                                                                                                                                                                                                                                        fieldMiddleware?: FieldMiddleware[];
                                                                                                                                                                                                                                                        • Array of global field middleware functions

                                                                                                                                                                                                                                                        property noDuplicatedFields

                                                                                                                                                                                                                                                        noDuplicatedFields?: boolean;
                                                                                                                                                                                                                                                        • Set to true if it should throw an error when the same Query / Mutation field is defined more than once

                                                                                                                                                                                                                                                        property numberScalarMode

                                                                                                                                                                                                                                                        numberScalarMode?: NumberScalarMode;
                                                                                                                                                                                                                                                        • Number scalar mode 'float'

                                                                                                                                                                                                                                                        property orphanedTypes

                                                                                                                                                                                                                                                        orphanedTypes?: (Function | object)[];
                                                                                                                                                                                                                                                        • Orphaned type classes/enums that are not explicitly used in GraphQL types definitions

                                                                                                                                                                                                                                                        property scalarsMap

                                                                                                                                                                                                                                                        scalarsMap?: ScalarsTypeMap[];
                                                                                                                                                                                                                                                        • Scalars map

                                                                                                                                                                                                                                                        property skipCheck

                                                                                                                                                                                                                                                        skipCheck?: boolean;
                                                                                                                                                                                                                                                        • Disable checking on build the correctness of a schema

                                                                                                                                                                                                                                                        interface CustomScalar

                                                                                                                                                                                                                                                        interface CustomScalar<T, K> {}

                                                                                                                                                                                                                                                          property description

                                                                                                                                                                                                                                                          description?: string;

                                                                                                                                                                                                                                                            property parseLiteral

                                                                                                                                                                                                                                                            parseLiteral: GraphQLScalarLiteralParser<K>;

                                                                                                                                                                                                                                                              property parseValue

                                                                                                                                                                                                                                                              parseValue: GraphQLScalarValueParser<K>;

                                                                                                                                                                                                                                                                property serialize

                                                                                                                                                                                                                                                                serialize: GraphQLScalarSerializer<T>;

                                                                                                                                                                                                                                                                  interface DefinitionsGeneratorOptions

                                                                                                                                                                                                                                                                  interface DefinitionsGeneratorOptions {}

                                                                                                                                                                                                                                                                    property additionalHeader

                                                                                                                                                                                                                                                                    additionalHeader?: string;
                                                                                                                                                                                                                                                                    • If provided, specifies a custom header to add after the to the output file (eg. for custom type imports or comments) undefined

                                                                                                                                                                                                                                                                    property customScalarTypeMapping

                                                                                                                                                                                                                                                                    customScalarTypeMapping?: Record<
                                                                                                                                                                                                                                                                    string,
                                                                                                                                                                                                                                                                    | string
                                                                                                                                                                                                                                                                    | {
                                                                                                                                                                                                                                                                    name: string;
                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                    >;
                                                                                                                                                                                                                                                                    • If provided, specifies a mapping of types to use for custom scalars undefined

                                                                                                                                                                                                                                                                    property defaultScalarType

                                                                                                                                                                                                                                                                    defaultScalarType?: string;
                                                                                                                                                                                                                                                                    • If provided, specifies a default generated TypeScript type for custom scalars. 'any'

                                                                                                                                                                                                                                                                    property defaultTypeMapping

                                                                                                                                                                                                                                                                    defaultTypeMapping?: Partial<
                                                                                                                                                                                                                                                                    Record<'ID' | 'Boolean' | 'Float' | 'String' | 'Int', string>
                                                                                                                                                                                                                                                                    >;
                                                                                                                                                                                                                                                                    • If provided, specifies a mapping of default scalar types (Int, Boolean, ID, Float, String). undefined

                                                                                                                                                                                                                                                                    property emitTypenameField

                                                                                                                                                                                                                                                                    emitTypenameField?: boolean;
                                                                                                                                                                                                                                                                    • If true, the additional "__typename" field is generated for every object type. false

                                                                                                                                                                                                                                                                    property enumsAsTypes

                                                                                                                                                                                                                                                                    enumsAsTypes?: boolean;
                                                                                                                                                                                                                                                                    • If true, enums are generated as string literal union types. false

                                                                                                                                                                                                                                                                    property skipResolverArgs

                                                                                                                                                                                                                                                                    skipResolverArgs?: boolean;
                                                                                                                                                                                                                                                                    • If true, resolvers (query/mutation/etc) are generated as plain fields without arguments. false

                                                                                                                                                                                                                                                                    interface EnumOptions

                                                                                                                                                                                                                                                                    interface EnumOptions<T extends object = any> {}
                                                                                                                                                                                                                                                                    • Interface defining options that can be passed to registerEnumType function.

                                                                                                                                                                                                                                                                    property description

                                                                                                                                                                                                                                                                    description?: string;
                                                                                                                                                                                                                                                                    • Description of the enum.

                                                                                                                                                                                                                                                                    property name

                                                                                                                                                                                                                                                                    name: string;
                                                                                                                                                                                                                                                                    • Name of the enum.

                                                                                                                                                                                                                                                                    property valuesMap

                                                                                                                                                                                                                                                                    valuesMap?: EnumMetadataValuesMap<T>;
                                                                                                                                                                                                                                                                    • A map of options for the values of the enum.

                                                                                                                                                                                                                                                                    interface Federation2Config

                                                                                                                                                                                                                                                                    interface Federation2Config {}

                                                                                                                                                                                                                                                                      property directives

                                                                                                                                                                                                                                                                      directives?: (string | AliasDirectiveImport)[];
                                                                                                                                                                                                                                                                      • The imported directives ['@composeDirective', '@extends', '@external', '@inaccessible', '@interfaceObject', '@key', '@override', '@provides', '@requires', '@shareable', '@tag']

                                                                                                                                                                                                                                                                      property importUrl

                                                                                                                                                                                                                                                                      importUrl?: string;
                                                                                                                                                                                                                                                                      • The import link 'https://specs.apollo.dev/federation/v2.3'

                                                                                                                                                                                                                                                                      property version

                                                                                                                                                                                                                                                                      version: 2;

                                                                                                                                                                                                                                                                        interface FieldMiddleware

                                                                                                                                                                                                                                                                        interface FieldMiddleware<
                                                                                                                                                                                                                                                                        TSource = any,
                                                                                                                                                                                                                                                                        TContext = any,
                                                                                                                                                                                                                                                                        TArgs = {
                                                                                                                                                                                                                                                                        [argName: string]: any;
                                                                                                                                                                                                                                                                        },
                                                                                                                                                                                                                                                                        TOutput = any
                                                                                                                                                                                                                                                                        > {}

                                                                                                                                                                                                                                                                          call signature

                                                                                                                                                                                                                                                                          (ctx: MiddlewareContext<TSource, TContext, TArgs>, next: NextFn):
                                                                                                                                                                                                                                                                          | Promise<TOutput>
                                                                                                                                                                                                                                                                          | TOutput;

                                                                                                                                                                                                                                                                            interface GqlExceptionFilter

                                                                                                                                                                                                                                                                            interface GqlExceptionFilter<TInput = any, TOutput = any> {}

                                                                                                                                                                                                                                                                              method catch

                                                                                                                                                                                                                                                                              catch: (exception: TInput, host: ArgumentsHost) => TOutput;

                                                                                                                                                                                                                                                                                interface GqlModuleAsyncOptions

                                                                                                                                                                                                                                                                                interface GqlModuleAsyncOptions<
                                                                                                                                                                                                                                                                                TOptions extends Record<string, any> = GqlModuleOptions,
                                                                                                                                                                                                                                                                                TFactory = GqlOptionsFactory<TOptions>
                                                                                                                                                                                                                                                                                > extends Pick<ModuleMetadata, 'imports'> {}

                                                                                                                                                                                                                                                                                  property driver

                                                                                                                                                                                                                                                                                  driver?: TOptions['driver'];
                                                                                                                                                                                                                                                                                  • GraphQL server driver

                                                                                                                                                                                                                                                                                  property inject

                                                                                                                                                                                                                                                                                  inject?: any[];

                                                                                                                                                                                                                                                                                    property useClass

                                                                                                                                                                                                                                                                                    useClass?: Type<TFactory>;

                                                                                                                                                                                                                                                                                      property useExisting

                                                                                                                                                                                                                                                                                      useExisting?: Type<TFactory>;

                                                                                                                                                                                                                                                                                        property useFactory

                                                                                                                                                                                                                                                                                        useFactory?: (
                                                                                                                                                                                                                                                                                        ...args: any[]
                                                                                                                                                                                                                                                                                        ) => Promise<Omit<TOptions, 'driver'>> | Omit<TOptions, 'driver'>;

                                                                                                                                                                                                                                                                                          interface GqlModuleOptions

                                                                                                                                                                                                                                                                                          interface GqlModuleOptions<TDriver extends GraphQLDriver = any> {}
                                                                                                                                                                                                                                                                                          • "GraphQLModule" options object.

                                                                                                                                                                                                                                                                                          property autoSchemaFile

                                                                                                                                                                                                                                                                                          autoSchemaFile?: AutoSchemaFileValue;
                                                                                                                                                                                                                                                                                          • If enabled, GraphQL schema will be generated automatically

                                                                                                                                                                                                                                                                                          property buildSchemaOptions

                                                                                                                                                                                                                                                                                          buildSchemaOptions?: BuildSchemaOptions;
                                                                                                                                                                                                                                                                                          • Options to be passed to the schema generator Only applicable if "autoSchemaFile" = true

                                                                                                                                                                                                                                                                                          property context

                                                                                                                                                                                                                                                                                          context?: any;
                                                                                                                                                                                                                                                                                          • Context function

                                                                                                                                                                                                                                                                                          property definitions

                                                                                                                                                                                                                                                                                          definitions?: {
                                                                                                                                                                                                                                                                                          path?: string;
                                                                                                                                                                                                                                                                                          outputAs?: 'class' | 'interface';
                                                                                                                                                                                                                                                                                          } & DefinitionsGeneratorOptions;
                                                                                                                                                                                                                                                                                          • TypeScript definitions generator options

                                                                                                                                                                                                                                                                                          property directiveResolvers

                                                                                                                                                                                                                                                                                          directiveResolvers?: any;
                                                                                                                                                                                                                                                                                          • Directive resolvers

                                                                                                                                                                                                                                                                                          property driver

                                                                                                                                                                                                                                                                                          driver?: Type<TDriver>;
                                                                                                                                                                                                                                                                                          • GraphQL server adapter

                                                                                                                                                                                                                                                                                          property fieldResolverEnhancers

                                                                                                                                                                                                                                                                                          fieldResolverEnhancers?: Enhancer[];
                                                                                                                                                                                                                                                                                          • Enable/disable enhancers for @ResolveField()

                                                                                                                                                                                                                                                                                          property include

                                                                                                                                                                                                                                                                                          include?: Function[];
                                                                                                                                                                                                                                                                                          • An array of modules to scan when searching for resolvers

                                                                                                                                                                                                                                                                                          property inheritResolversFromInterfaces

                                                                                                                                                                                                                                                                                          inheritResolversFromInterfaces?: boolean;
                                                                                                                                                                                                                                                                                          • Inherit missing resolvers from their interface types defined in the resolvers object.

                                                                                                                                                                                                                                                                                          property metadata

                                                                                                                                                                                                                                                                                          metadata?: () => Promise<Record<string, any>>;
                                                                                                                                                                                                                                                                                          • Extra static metadata to be loaded into the specification

                                                                                                                                                                                                                                                                                          property path

                                                                                                                                                                                                                                                                                          path?: string;
                                                                                                                                                                                                                                                                                          • Path to mount GraphQL API

                                                                                                                                                                                                                                                                                          property resolvers

                                                                                                                                                                                                                                                                                          resolvers?: IResolvers | Array<IResolvers>;
                                                                                                                                                                                                                                                                                          • Extra resolvers to be registered.

                                                                                                                                                                                                                                                                                          property resolverValidationOptions

                                                                                                                                                                                                                                                                                          resolverValidationOptions?: IResolverValidationOptions;
                                                                                                                                                                                                                                                                                          • Resolver validation options.

                                                                                                                                                                                                                                                                                          property schema

                                                                                                                                                                                                                                                                                          schema?: GraphQLSchema;
                                                                                                                                                                                                                                                                                          • Optional GraphQL schema (to be used or to be merged)

                                                                                                                                                                                                                                                                                          property sortSchema

                                                                                                                                                                                                                                                                                          sortSchema?: boolean;
                                                                                                                                                                                                                                                                                          • Sort the schema lexicographically

                                                                                                                                                                                                                                                                                          property transformAutoSchemaFile

                                                                                                                                                                                                                                                                                          transformAutoSchemaFile?: boolean;
                                                                                                                                                                                                                                                                                          • Apply transformSchema to the autoSchemaFile

                                                                                                                                                                                                                                                                                          property transformSchema

                                                                                                                                                                                                                                                                                          transformSchema?: (
                                                                                                                                                                                                                                                                                          schema: GraphQLSchema
                                                                                                                                                                                                                                                                                          ) => GraphQLSchema | Promise<GraphQLSchema>;
                                                                                                                                                                                                                                                                                          • Function to be applied to the schema letting you register custom transformations.

                                                                                                                                                                                                                                                                                          property typeDefs

                                                                                                                                                                                                                                                                                          typeDefs?: string | string[];
                                                                                                                                                                                                                                                                                          • Type definitions

                                                                                                                                                                                                                                                                                          property typePaths

                                                                                                                                                                                                                                                                                          typePaths?: string[];
                                                                                                                                                                                                                                                                                          • Paths to files that contain GraphQL definitions

                                                                                                                                                                                                                                                                                          property useGlobalPrefix

                                                                                                                                                                                                                                                                                          useGlobalPrefix?: boolean;
                                                                                                                                                                                                                                                                                          • Prepends the global prefix to the url

                                                                                                                                                                                                                                                                                            See Also

                                                                                                                                                                                                                                                                                            • [faq/global-prefix](Global Prefix)

                                                                                                                                                                                                                                                                                          interface GqlOptionsFactory

                                                                                                                                                                                                                                                                                          interface GqlOptionsFactory<T extends Record<string, any> = GqlModuleOptions> {}

                                                                                                                                                                                                                                                                                            method createGqlOptions

                                                                                                                                                                                                                                                                                            createGqlOptions: () => Promise<Omit<T, 'driver'>> | Omit<T, 'driver'>;

                                                                                                                                                                                                                                                                                              interface GqlSubscriptionServiceOptions

                                                                                                                                                                                                                                                                                              interface GqlSubscriptionServiceOptions extends SubscriptionConfig {}

                                                                                                                                                                                                                                                                                                property context

                                                                                                                                                                                                                                                                                                context?: ServerOptions['context'];

                                                                                                                                                                                                                                                                                                  property execute

                                                                                                                                                                                                                                                                                                  execute?: typeof graphqlExecute;

                                                                                                                                                                                                                                                                                                    property path

                                                                                                                                                                                                                                                                                                    path?: string;

                                                                                                                                                                                                                                                                                                      property schema

                                                                                                                                                                                                                                                                                                      schema: GraphQLSchema;

                                                                                                                                                                                                                                                                                                        property subscribe

                                                                                                                                                                                                                                                                                                        subscribe?: typeof graphqlSubscribe;

                                                                                                                                                                                                                                                                                                          interface GraphQLArgumentsHost

                                                                                                                                                                                                                                                                                                          interface GraphQLArgumentsHost extends ArgumentsHost {}

                                                                                                                                                                                                                                                                                                            method getArgs

                                                                                                                                                                                                                                                                                                            getArgs: <T = any>() => T;

                                                                                                                                                                                                                                                                                                              method getContext

                                                                                                                                                                                                                                                                                                              getContext: <T = any>() => T;

                                                                                                                                                                                                                                                                                                                method getInfo

                                                                                                                                                                                                                                                                                                                getInfo: <T = any>() => T;

                                                                                                                                                                                                                                                                                                                  method getRoot

                                                                                                                                                                                                                                                                                                                  getRoot: <T = any>() => T;

                                                                                                                                                                                                                                                                                                                    interface GraphQLDriver

                                                                                                                                                                                                                                                                                                                    interface GraphQLDriver<TOptions = any> {}

                                                                                                                                                                                                                                                                                                                      method start

                                                                                                                                                                                                                                                                                                                      start: (options: TOptions) => Promise<unknown>;

                                                                                                                                                                                                                                                                                                                        method stop

                                                                                                                                                                                                                                                                                                                        stop: () => Promise<void>;

                                                                                                                                                                                                                                                                                                                          interface InputTypeOptions

                                                                                                                                                                                                                                                                                                                          interface InputTypeOptions {}
                                                                                                                                                                                                                                                                                                                          • Interface defining options that can be passed to @InputType() decorator.

                                                                                                                                                                                                                                                                                                                          property description

                                                                                                                                                                                                                                                                                                                          description?: string;
                                                                                                                                                                                                                                                                                                                          • Description of the input type.

                                                                                                                                                                                                                                                                                                                          property isAbstract

                                                                                                                                                                                                                                                                                                                          isAbstract?: boolean;
                                                                                                                                                                                                                                                                                                                          • If true, type will not be registered in the schema.

                                                                                                                                                                                                                                                                                                                          interface InterfaceTypeOptions

                                                                                                                                                                                                                                                                                                                          interface InterfaceTypeOptions {}
                                                                                                                                                                                                                                                                                                                          • Interface defining options that can be passed to @InterfaceType() decorator.

                                                                                                                                                                                                                                                                                                                          property description

                                                                                                                                                                                                                                                                                                                          description?: string;
                                                                                                                                                                                                                                                                                                                          • Description of the argument.

                                                                                                                                                                                                                                                                                                                          property implements

                                                                                                                                                                                                                                                                                                                          implements?: Function | Function[] | (() => Function | Function[]);
                                                                                                                                                                                                                                                                                                                          • Interfaces implemented by this interface.

                                                                                                                                                                                                                                                                                                                          property isAbstract

                                                                                                                                                                                                                                                                                                                          isAbstract?: boolean;
                                                                                                                                                                                                                                                                                                                          • If true, type will not be registered in the schema.

                                                                                                                                                                                                                                                                                                                          property resolveType

                                                                                                                                                                                                                                                                                                                          resolveType?: ResolveTypeFn<any, any>;
                                                                                                                                                                                                                                                                                                                          • Custom implementation of the "resolveType" function.

                                                                                                                                                                                                                                                                                                                          interface MiddlewareContext

                                                                                                                                                                                                                                                                                                                          interface MiddlewareContext<
                                                                                                                                                                                                                                                                                                                          TSource = any,
                                                                                                                                                                                                                                                                                                                          TContext = any,
                                                                                                                                                                                                                                                                                                                          TArgs = {
                                                                                                                                                                                                                                                                                                                          [argName: string]: any;
                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                          > {}

                                                                                                                                                                                                                                                                                                                            property args

                                                                                                                                                                                                                                                                                                                            args: TArgs;

                                                                                                                                                                                                                                                                                                                              property context

                                                                                                                                                                                                                                                                                                                              context: TContext;

                                                                                                                                                                                                                                                                                                                                property info

                                                                                                                                                                                                                                                                                                                                info: GraphQLResolveInfo;

                                                                                                                                                                                                                                                                                                                                  property source

                                                                                                                                                                                                                                                                                                                                  source: TSource;

                                                                                                                                                                                                                                                                                                                                    interface ObjectTypeOptions

                                                                                                                                                                                                                                                                                                                                    interface ObjectTypeOptions {}
                                                                                                                                                                                                                                                                                                                                    • Interface defining options that can be passed to @ObjectType() decorator

                                                                                                                                                                                                                                                                                                                                    property description

                                                                                                                                                                                                                                                                                                                                    description?: string;
                                                                                                                                                                                                                                                                                                                                    • Description of the input type.

                                                                                                                                                                                                                                                                                                                                    property implements

                                                                                                                                                                                                                                                                                                                                    implements?: Function | Function[] | (() => Function | Function[]);
                                                                                                                                                                                                                                                                                                                                    • Interfaces implemented by this object type.

                                                                                                                                                                                                                                                                                                                                    property inheritDescription

                                                                                                                                                                                                                                                                                                                                    inheritDescription?: boolean;
                                                                                                                                                                                                                                                                                                                                    • If true, direct descendant classes will inherit the parent's description if own description is not set. Also works on classes marked with isAbstract: true.

                                                                                                                                                                                                                                                                                                                                    property isAbstract

                                                                                                                                                                                                                                                                                                                                    isAbstract?: boolean;
                                                                                                                                                                                                                                                                                                                                    • If true, type will not be registered in the schema.

                                                                                                                                                                                                                                                                                                                                    interface ResolverOptions

                                                                                                                                                                                                                                                                                                                                    interface ResolverOptions {}
                                                                                                                                                                                                                                                                                                                                    • Interface defining options that can be passed to @Resolve() decorator

                                                                                                                                                                                                                                                                                                                                    property isAbstract

                                                                                                                                                                                                                                                                                                                                    isAbstract?: boolean;
                                                                                                                                                                                                                                                                                                                                    • If true, type will not be registered in the schema.

                                                                                                                                                                                                                                                                                                                                    interface ScalarsTypeMap

                                                                                                                                                                                                                                                                                                                                    interface ScalarsTypeMap {}

                                                                                                                                                                                                                                                                                                                                      property scalar

                                                                                                                                                                                                                                                                                                                                      scalar: GraphQLScalarType;

                                                                                                                                                                                                                                                                                                                                        property type

                                                                                                                                                                                                                                                                                                                                        type: Function;

                                                                                                                                                                                                                                                                                                                                          interface SchemaFileConfig

                                                                                                                                                                                                                                                                                                                                          interface SchemaFileConfig {}

                                                                                                                                                                                                                                                                                                                                            property federation

                                                                                                                                                                                                                                                                                                                                            federation?: FederationVersion | FederationConfig;
                                                                                                                                                                                                                                                                                                                                            • Federation version and its configuration,

                                                                                                                                                                                                                                                                                                                                              1

                                                                                                                                                                                                                                                                                                                                            property path

                                                                                                                                                                                                                                                                                                                                            path?: string;
                                                                                                                                                                                                                                                                                                                                            • Path to the schema file.

                                                                                                                                                                                                                                                                                                                                            interface UnionOptions

                                                                                                                                                                                                                                                                                                                                            interface UnionOptions<T extends readonly Type<unknown>[] = Type<unknown>[]> {}
                                                                                                                                                                                                                                                                                                                                            • Interface defining options that can be passed to createUnionType function.

                                                                                                                                                                                                                                                                                                                                            property description

                                                                                                                                                                                                                                                                                                                                            description?: string;
                                                                                                                                                                                                                                                                                                                                            • Description of the union.

                                                                                                                                                                                                                                                                                                                                            property name

                                                                                                                                                                                                                                                                                                                                            name?: string;
                                                                                                                                                                                                                                                                                                                                            • Name of the union.

                                                                                                                                                                                                                                                                                                                                            property resolveType

                                                                                                                                                                                                                                                                                                                                            resolveType?: ResolveTypeFn<any, any>;
                                                                                                                                                                                                                                                                                                                                            • Custom implementation of the "resolveType" function.

                                                                                                                                                                                                                                                                                                                                            property types

                                                                                                                                                                                                                                                                                                                                            types: () => T;
                                                                                                                                                                                                                                                                                                                                            • Types that the union consist of.

                                                                                                                                                                                                                                                                                                                                            Type Aliases

                                                                                                                                                                                                                                                                                                                                            type ArgsOptions

                                                                                                                                                                                                                                                                                                                                            type ArgsOptions<T = any> = BaseTypeOptions<T> & {
                                                                                                                                                                                                                                                                                                                                            /**
                                                                                                                                                                                                                                                                                                                                            * Name of the argument.
                                                                                                                                                                                                                                                                                                                                            */
                                                                                                                                                                                                                                                                                                                                            name?: string;
                                                                                                                                                                                                                                                                                                                                            /**
                                                                                                                                                                                                                                                                                                                                            * Description of the argument.
                                                                                                                                                                                                                                                                                                                                            */
                                                                                                                                                                                                                                                                                                                                            description?: string;
                                                                                                                                                                                                                                                                                                                                            /**
                                                                                                                                                                                                                                                                                                                                            * Function that returns a reference to the arguments host class.
                                                                                                                                                                                                                                                                                                                                            */
                                                                                                                                                                                                                                                                                                                                            type?: () => any;
                                                                                                                                                                                                                                                                                                                                            };
                                                                                                                                                                                                                                                                                                                                            • Interface defining options that can be passed to @Args() decorator.

                                                                                                                                                                                                                                                                                                                                            type ArrayElement

                                                                                                                                                                                                                                                                                                                                            type ArrayElement<ArrayType extends readonly unknown[]> = ArrayType[number];

                                                                                                                                                                                                                                                                                                                                              type AutoSchemaFileValue

                                                                                                                                                                                                                                                                                                                                              type AutoSchemaFileValue = boolean | string | SchemaFileConfig;

                                                                                                                                                                                                                                                                                                                                                type BaseTypeOptions

                                                                                                                                                                                                                                                                                                                                                type BaseTypeOptions<T = any> = NonNullableBaseType<T> | NullableBaseType<T>;

                                                                                                                                                                                                                                                                                                                                                  type Complexity

                                                                                                                                                                                                                                                                                                                                                  type Complexity = ComplexityEstimator | number;

                                                                                                                                                                                                                                                                                                                                                    type ComplexityEstimator

                                                                                                                                                                                                                                                                                                                                                    type ComplexityEstimator = (options: ComplexityEstimatorArgs) => number | void;

                                                                                                                                                                                                                                                                                                                                                      type ComplexityEstimatorArgs

                                                                                                                                                                                                                                                                                                                                                      type ComplexityEstimatorArgs = {
                                                                                                                                                                                                                                                                                                                                                      type: GraphQLCompositeType;
                                                                                                                                                                                                                                                                                                                                                      field: GraphQLField<any, any>;
                                                                                                                                                                                                                                                                                                                                                      args: {
                                                                                                                                                                                                                                                                                                                                                      [key: string]: any;
                                                                                                                                                                                                                                                                                                                                                      };
                                                                                                                                                                                                                                                                                                                                                      childComplexity: number;
                                                                                                                                                                                                                                                                                                                                                      };

                                                                                                                                                                                                                                                                                                                                                        type DateScalarMode

                                                                                                                                                                                                                                                                                                                                                        type DateScalarMode = 'isoDate' | 'timestamp';

                                                                                                                                                                                                                                                                                                                                                          type Enhancer

                                                                                                                                                                                                                                                                                                                                                          type Enhancer = 'guards' | 'interceptors' | 'filters';

                                                                                                                                                                                                                                                                                                                                                            type FederationConfig

                                                                                                                                                                                                                                                                                                                                                            type FederationConfig = Federation2Config;

                                                                                                                                                                                                                                                                                                                                                              type FederationVersion

                                                                                                                                                                                                                                                                                                                                                              type FederationVersion = 1 | 2;

                                                                                                                                                                                                                                                                                                                                                                type FieldOptions

                                                                                                                                                                                                                                                                                                                                                                type FieldOptions<T = any> = BaseTypeOptions<T> & {
                                                                                                                                                                                                                                                                                                                                                                /**
                                                                                                                                                                                                                                                                                                                                                                * Name of the field.
                                                                                                                                                                                                                                                                                                                                                                */
                                                                                                                                                                                                                                                                                                                                                                name?: string;
                                                                                                                                                                                                                                                                                                                                                                /**
                                                                                                                                                                                                                                                                                                                                                                * Description of the field.
                                                                                                                                                                                                                                                                                                                                                                */
                                                                                                                                                                                                                                                                                                                                                                description?: string;
                                                                                                                                                                                                                                                                                                                                                                /**
                                                                                                                                                                                                                                                                                                                                                                * Field deprecation reason (if deprecated).
                                                                                                                                                                                                                                                                                                                                                                */
                                                                                                                                                                                                                                                                                                                                                                deprecationReason?: string;
                                                                                                                                                                                                                                                                                                                                                                /**
                                                                                                                                                                                                                                                                                                                                                                * Field complexity options.
                                                                                                                                                                                                                                                                                                                                                                */
                                                                                                                                                                                                                                                                                                                                                                complexity?: Complexity;
                                                                                                                                                                                                                                                                                                                                                                /**
                                                                                                                                                                                                                                                                                                                                                                * Array of middleware to apply.
                                                                                                                                                                                                                                                                                                                                                                */
                                                                                                                                                                                                                                                                                                                                                                middleware?: FieldMiddleware[];
                                                                                                                                                                                                                                                                                                                                                                };
                                                                                                                                                                                                                                                                                                                                                                • Interface defining options that can be passed to @Field() decorator.

                                                                                                                                                                                                                                                                                                                                                                type FieldType

                                                                                                                                                                                                                                                                                                                                                                type FieldType<T> = T;

                                                                                                                                                                                                                                                                                                                                                                  type GenerateOptions

                                                                                                                                                                                                                                                                                                                                                                  type GenerateOptions = DefinitionsGeneratorOptions & {
                                                                                                                                                                                                                                                                                                                                                                  typePaths: string[];
                                                                                                                                                                                                                                                                                                                                                                  path: string;
                                                                                                                                                                                                                                                                                                                                                                  outputAs?: 'class' | 'interface';
                                                                                                                                                                                                                                                                                                                                                                  watch?: boolean;
                                                                                                                                                                                                                                                                                                                                                                  debug?: boolean;
                                                                                                                                                                                                                                                                                                                                                                  typeDefs?: string | string[];
                                                                                                                                                                                                                                                                                                                                                                  };

                                                                                                                                                                                                                                                                                                                                                                    type GqlContextType

                                                                                                                                                                                                                                                                                                                                                                    type GqlContextType = 'graphql' | ContextType;

                                                                                                                                                                                                                                                                                                                                                                      type GqlTypeReference

                                                                                                                                                                                                                                                                                                                                                                      type GqlTypeReference<T = any> =
                                                                                                                                                                                                                                                                                                                                                                      | Type<T>
                                                                                                                                                                                                                                                                                                                                                                      | GraphQLScalarType
                                                                                                                                                                                                                                                                                                                                                                      | Function
                                                                                                                                                                                                                                                                                                                                                                      | object
                                                                                                                                                                                                                                                                                                                                                                      | symbol;

                                                                                                                                                                                                                                                                                                                                                                        type GraphQLExecutionContext

                                                                                                                                                                                                                                                                                                                                                                        type GraphQLExecutionContext = GqlExecutionContext;

                                                                                                                                                                                                                                                                                                                                                                          type GraphQLSubscriptionTransportWsConfig

                                                                                                                                                                                                                                                                                                                                                                          type GraphQLSubscriptionTransportWsConfig = Partial<
                                                                                                                                                                                                                                                                                                                                                                          Pick<
                                                                                                                                                                                                                                                                                                                                                                          SubscriptionTransportWsServerOptions,
                                                                                                                                                                                                                                                                                                                                                                          'onConnect' | 'onDisconnect' | 'onOperation' | 'keepAlive'
                                                                                                                                                                                                                                                                                                                                                                          >
                                                                                                                                                                                                                                                                                                                                                                          > & {
                                                                                                                                                                                                                                                                                                                                                                          path?: string;
                                                                                                                                                                                                                                                                                                                                                                          };

                                                                                                                                                                                                                                                                                                                                                                            type GraphQLWsSubscriptionsConfig

                                                                                                                                                                                                                                                                                                                                                                            type GraphQLWsSubscriptionsConfig = Partial<
                                                                                                                                                                                                                                                                                                                                                                            Pick<
                                                                                                                                                                                                                                                                                                                                                                            ServerOptions,
                                                                                                                                                                                                                                                                                                                                                                            | 'connectionInitWaitTimeout'
                                                                                                                                                                                                                                                                                                                                                                            | 'onConnect'
                                                                                                                                                                                                                                                                                                                                                                            | 'onDisconnect'
                                                                                                                                                                                                                                                                                                                                                                            | 'onClose'
                                                                                                                                                                                                                                                                                                                                                                            | 'onSubscribe'
                                                                                                                                                                                                                                                                                                                                                                            | 'onNext'
                                                                                                                                                                                                                                                                                                                                                                            >
                                                                                                                                                                                                                                                                                                                                                                            > & {
                                                                                                                                                                                                                                                                                                                                                                            path?: string;
                                                                                                                                                                                                                                                                                                                                                                            };

                                                                                                                                                                                                                                                                                                                                                                              type MutationOptions

                                                                                                                                                                                                                                                                                                                                                                              type MutationOptions<T = any> = BaseTypeOptions<T> & {
                                                                                                                                                                                                                                                                                                                                                                              /**
                                                                                                                                                                                                                                                                                                                                                                              * Name of the mutation.
                                                                                                                                                                                                                                                                                                                                                                              */
                                                                                                                                                                                                                                                                                                                                                                              name?: string;
                                                                                                                                                                                                                                                                                                                                                                              /**
                                                                                                                                                                                                                                                                                                                                                                              * Description of the mutation.
                                                                                                                                                                                                                                                                                                                                                                              */
                                                                                                                                                                                                                                                                                                                                                                              description?: string;
                                                                                                                                                                                                                                                                                                                                                                              /**
                                                                                                                                                                                                                                                                                                                                                                              * Mutation deprecation reason (if deprecated).
                                                                                                                                                                                                                                                                                                                                                                              */
                                                                                                                                                                                                                                                                                                                                                                              deprecationReason?: string;
                                                                                                                                                                                                                                                                                                                                                                              /**
                                                                                                                                                                                                                                                                                                                                                                              * Mutation complexity options.
                                                                                                                                                                                                                                                                                                                                                                              */
                                                                                                                                                                                                                                                                                                                                                                              complexity?: Complexity;
                                                                                                                                                                                                                                                                                                                                                                              };
                                                                                                                                                                                                                                                                                                                                                                              • Interface defining options that can be passed to @Mutation() decorator.

                                                                                                                                                                                                                                                                                                                                                                              type NextFn

                                                                                                                                                                                                                                                                                                                                                                              type NextFn<T = any> = () => Promise<T>;

                                                                                                                                                                                                                                                                                                                                                                                type NullableList

                                                                                                                                                                                                                                                                                                                                                                                type NullableList = 'items' | 'itemsAndList';

                                                                                                                                                                                                                                                                                                                                                                                  type NumberScalarMode

                                                                                                                                                                                                                                                                                                                                                                                  type NumberScalarMode = 'float' | 'integer';

                                                                                                                                                                                                                                                                                                                                                                                    type QueryOptions

                                                                                                                                                                                                                                                                                                                                                                                    type QueryOptions<T = any> = BaseTypeOptions<T> & {
                                                                                                                                                                                                                                                                                                                                                                                    /**
                                                                                                                                                                                                                                                                                                                                                                                    * Name of the query.
                                                                                                                                                                                                                                                                                                                                                                                    */
                                                                                                                                                                                                                                                                                                                                                                                    name?: string;
                                                                                                                                                                                                                                                                                                                                                                                    /**
                                                                                                                                                                                                                                                                                                                                                                                    * Description of the query.
                                                                                                                                                                                                                                                                                                                                                                                    */
                                                                                                                                                                                                                                                                                                                                                                                    description?: string;
                                                                                                                                                                                                                                                                                                                                                                                    /**
                                                                                                                                                                                                                                                                                                                                                                                    * Query deprecation reason (if deprecated).
                                                                                                                                                                                                                                                                                                                                                                                    */
                                                                                                                                                                                                                                                                                                                                                                                    deprecationReason?: string;
                                                                                                                                                                                                                                                                                                                                                                                    /**
                                                                                                                                                                                                                                                                                                                                                                                    * Query complexity options.
                                                                                                                                                                                                                                                                                                                                                                                    */
                                                                                                                                                                                                                                                                                                                                                                                    complexity?: Complexity;
                                                                                                                                                                                                                                                                                                                                                                                    };
                                                                                                                                                                                                                                                                                                                                                                                    • Interface defining options that can be passed to @Query() decorator.

                                                                                                                                                                                                                                                                                                                                                                                    type ResolveFieldOptions

                                                                                                                                                                                                                                                                                                                                                                                    type ResolveFieldOptions<T = any> = BaseTypeOptions<T> & {
                                                                                                                                                                                                                                                                                                                                                                                    /**
                                                                                                                                                                                                                                                                                                                                                                                    * Name of the field.
                                                                                                                                                                                                                                                                                                                                                                                    */
                                                                                                                                                                                                                                                                                                                                                                                    name?: string;
                                                                                                                                                                                                                                                                                                                                                                                    /**
                                                                                                                                                                                                                                                                                                                                                                                    * Description of the field.
                                                                                                                                                                                                                                                                                                                                                                                    */
                                                                                                                                                                                                                                                                                                                                                                                    description?: string;
                                                                                                                                                                                                                                                                                                                                                                                    /**
                                                                                                                                                                                                                                                                                                                                                                                    * Field deprecation reason (if deprecated).
                                                                                                                                                                                                                                                                                                                                                                                    */
                                                                                                                                                                                                                                                                                                                                                                                    deprecationReason?: string;
                                                                                                                                                                                                                                                                                                                                                                                    /**
                                                                                                                                                                                                                                                                                                                                                                                    * Field complexity options.
                                                                                                                                                                                                                                                                                                                                                                                    */
                                                                                                                                                                                                                                                                                                                                                                                    complexity?: Complexity;
                                                                                                                                                                                                                                                                                                                                                                                    /**
                                                                                                                                                                                                                                                                                                                                                                                    * Array of middleware to apply.
                                                                                                                                                                                                                                                                                                                                                                                    */
                                                                                                                                                                                                                                                                                                                                                                                    middleware?: FieldMiddleware[];
                                                                                                                                                                                                                                                                                                                                                                                    };
                                                                                                                                                                                                                                                                                                                                                                                    • Interface defining options that can be passed to @ResolveField() decorator.

                                                                                                                                                                                                                                                                                                                                                                                    type ResolverTypeFn

                                                                                                                                                                                                                                                                                                                                                                                    type ResolverTypeFn = (of?: void) => Function;

                                                                                                                                                                                                                                                                                                                                                                                      type ResolveTypeFn

                                                                                                                                                                                                                                                                                                                                                                                      type ResolveTypeFn<TSource = any, TContext = any> = (
                                                                                                                                                                                                                                                                                                                                                                                      ...args: Parameters<GraphQLTypeResolver<TSource, TContext>>
                                                                                                                                                                                                                                                                                                                                                                                      ) => any;

                                                                                                                                                                                                                                                                                                                                                                                        type ReturnTypeFunc

                                                                                                                                                                                                                                                                                                                                                                                        type ReturnTypeFunc<T extends ReturnTypeFuncValue = any> = (returns?: void) => T;

                                                                                                                                                                                                                                                                                                                                                                                          type ReturnTypeFuncValue

                                                                                                                                                                                                                                                                                                                                                                                          type ReturnTypeFuncValue = GqlTypeReference | [GqlTypeReference];

                                                                                                                                                                                                                                                                                                                                                                                            type SubscriptionConfig

                                                                                                                                                                                                                                                                                                                                                                                            type SubscriptionConfig = {
                                                                                                                                                                                                                                                                                                                                                                                            'graphql-ws'?: GraphQLWsSubscriptionsConfig | boolean;
                                                                                                                                                                                                                                                                                                                                                                                            'subscriptions-transport-ws'?: GraphQLSubscriptionTransportWsConfig | boolean;
                                                                                                                                                                                                                                                                                                                                                                                            };

                                                                                                                                                                                                                                                                                                                                                                                              type SubscriptionOptions

                                                                                                                                                                                                                                                                                                                                                                                              type SubscriptionOptions<T = any> = BaseTypeOptions<T> & {
                                                                                                                                                                                                                                                                                                                                                                                              /**
                                                                                                                                                                                                                                                                                                                                                                                              * Name of the subscription.
                                                                                                                                                                                                                                                                                                                                                                                              */
                                                                                                                                                                                                                                                                                                                                                                                              name?: string;
                                                                                                                                                                                                                                                                                                                                                                                              /**
                                                                                                                                                                                                                                                                                                                                                                                              * Description of the subscription.
                                                                                                                                                                                                                                                                                                                                                                                              */
                                                                                                                                                                                                                                                                                                                                                                                              description?: string;
                                                                                                                                                                                                                                                                                                                                                                                              /**
                                                                                                                                                                                                                                                                                                                                                                                              * Subscription deprecation reason (if deprecated).
                                                                                                                                                                                                                                                                                                                                                                                              */
                                                                                                                                                                                                                                                                                                                                                                                              deprecationReason?: string;
                                                                                                                                                                                                                                                                                                                                                                                              /**
                                                                                                                                                                                                                                                                                                                                                                                              * Filter messages function.
                                                                                                                                                                                                                                                                                                                                                                                              */
                                                                                                                                                                                                                                                                                                                                                                                              filter?: (
                                                                                                                                                                                                                                                                                                                                                                                              payload: any,
                                                                                                                                                                                                                                                                                                                                                                                              variables: any,
                                                                                                                                                                                                                                                                                                                                                                                              context: any
                                                                                                                                                                                                                                                                                                                                                                                              ) => boolean | Promise<boolean>;
                                                                                                                                                                                                                                                                                                                                                                                              /**
                                                                                                                                                                                                                                                                                                                                                                                              * Resolve messages function (to transform payload/message shape).
                                                                                                                                                                                                                                                                                                                                                                                              */
                                                                                                                                                                                                                                                                                                                                                                                              resolve?: (
                                                                                                                                                                                                                                                                                                                                                                                              payload: any,
                                                                                                                                                                                                                                                                                                                                                                                              args: any,
                                                                                                                                                                                                                                                                                                                                                                                              context: any,
                                                                                                                                                                                                                                                                                                                                                                                              info: any
                                                                                                                                                                                                                                                                                                                                                                                              ) => any | Promise<any>;
                                                                                                                                                                                                                                                                                                                                                                                              };
                                                                                                                                                                                                                                                                                                                                                                                              • Interface defining options that can be passed to @Subscription() decorator.

                                                                                                                                                                                                                                                                                                                                                                                              type Union

                                                                                                                                                                                                                                                                                                                                                                                              type Union<T extends readonly any[]> = InstanceType<ArrayElement<T>>;

                                                                                                                                                                                                                                                                                                                                                                                                Package Files (65)

                                                                                                                                                                                                                                                                                                                                                                                                Dependencies (14)

                                                                                                                                                                                                                                                                                                                                                                                                Dev Dependencies (7)

                                                                                                                                                                                                                                                                                                                                                                                                Peer Dependencies (8)

                                                                                                                                                                                                                                                                                                                                                                                                Badge

                                                                                                                                                                                                                                                                                                                                                                                                To add a badge like this onejsDocs.io badgeto your package's README, use the codes available below.

                                                                                                                                                                                                                                                                                                                                                                                                You may also use Shields.io to create a custom badge linking to https://www.jsdocs.io/package/@nestjs/graphql.

                                                                                                                                                                                                                                                                                                                                                                                                • Markdown
                                                                                                                                                                                                                                                                                                                                                                                                  [![jsDocs.io](https://img.shields.io/badge/jsDocs.io-reference-blue)](https://www.jsdocs.io/package/@nestjs/graphql)
                                                                                                                                                                                                                                                                                                                                                                                                • HTML
                                                                                                                                                                                                                                                                                                                                                                                                  <a href="https://www.jsdocs.io/package/@nestjs/graphql"><img src="https://img.shields.io/badge/jsDocs.io-reference-blue" alt="jsDocs.io"></a>