update many graphql field

This commit is contained in:
2024-10-12 16:34:43 +07:00
parent 244a6f3015
commit ba77bd4e1c
29 changed files with 466 additions and 56 deletions

View File

@@ -0,0 +1,9 @@
import { Global, Module } from '@nestjs/common';
import { ServiceFeedbackSchema } from './servicefeedback.schema';
@Global()
@Module({
providers: [ServiceFeedbackSchema],
exports: [ServiceFeedbackSchema],
})
export class ServiceFeedbackModule {}