您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12 行
309B

  1. import { Field, ObjectType } from '@nestjs/graphql';
  2. import { UUID } from '../../global/scalars/UUID';
  3. import { Time } from '../../global/scalars/Time'
  4. @ObjectType()
  5. export class Timeslot {
  6. @Field(() => UUID,{ nullable: false })
  7. _id: UUID
  8. @Field(() => Time, { nullable: false })
  9. time: Time
  10. }