generator-oda-api-simple
Version:
api-simple project genrator
14 lines (12 loc) • 474 B
text/typescript
import { common } from 'oda-gen-graphql';
import { FixupPasswordHook } from './api-hooks/fixupPassword';
// import { UserTenantProfileTypeExtention } from './entities/UserTenatnProfile';
import { LoginUserMutation } from './mutations/login.resolver';
import { LodashModule } from 'oda-lodash';
export class CommonExtends extends common.types.GQLModule {
protected _extend = [
new FixupPasswordHook({}),
new LoginUserMutation({}),
new LodashModule({}),
];
}