blog-be/src/hello.ts
2021-04-17 13:54:26 +08:00

8 lines
121 B
TypeScript

import { Field, ObjectType } from '@nestjs/graphql';
@ObjectType()
export class Hello {
@Field()
message: string;
}