8 lines
121 B
TypeScript
8 lines
121 B
TypeScript
|
import { Field, ObjectType } from '@nestjs/graphql';
|
||
|
|
||
|
@ObjectType()
|
||
|
export class Hello {
|
||
|
@Field()
|
||
|
message: string;
|
||
|
}
|