type-graphql#ResolverData TypeScript Examples

The following examples show how to use type-graphql#ResolverData. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: middleware.ts    From typegraphql-nestjs with MIT License 5 votes vote down vote up
async use({ info }: ResolverData, next: NextFn) {
    this.loggingService.writeLog(
      `${info.parentType.name}.${info.fieldName} resolver executed`,
    );
    return next();
  }
Example #2
Source File: resolvers.ts    From squid with GNU General Public License v3.0 5 votes vote down vote up
constructor(resolverData: ResolverData<any>) {
        let transaction = resolverData.context.openReaderTransaction
        assert(typeof transaction?.getEntityManager == 'function', 'expected typeorm transaction in the context')
        this.transaction = transaction
    }