Newer
Older
import { Field, ObjectType } from '@nestjs/graphql';
import { Entry } from './entry.model';
import { GraphQLBoolean } from 'graphql';
@ObjectType()
export class Agent {
@Field()
id: string;
@Field()
@Field(() => GraphQLBoolean)
catchable: boolean;