UNPKG

@nestjs/graphql

Version:

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

7 lines (6 loc) 273 B
import { SetMetadata } from '@nestjs/common'; import { CLASS_TYPE_METADATA } from '../graphql.constants.js'; export function addClassTypeMetadata(target, classType) { const decoratorFactory = SetMetadata(CLASS_TYPE_METADATA, classType); decoratorFactory(target); }