| 1234567891011121314151617181920212223 |
- import { Query, Resolver } from '@nestjs/graphql';
- import { VendurePlugin } from '@vendure/core';
- /**
- * https://github.com/vendure-ecommerce/vendure/issues/2906
- */
- @VendurePlugin({
- configuration: config => {
- return {
- ...config,
- customFields: {
- ...config.customFields,
- Customer: [
- {
- name: 'testField',
- type: 'string',
- },
- ],
- },
- };
- },
- })
- export class WithNewConfigObjectReferencePlugin {}
|