d9494a5
1
2
3
4
5
6
7
8
import { Field, ID, InputType } from '@nestjs/graphql'; @InputType() export class LogicFunctionIdInput { @Field(() => ID, { description: 'The id of the function.' }) id!: string; }