Files
twenty_crm/packages/twenty-server/src/engine/metadata-modules/serverless-function/dtos/serverless-function-id.input.ts

10 lines
244 B
TypeScript

import { ID, InputType } from '@nestjs/graphql';
import { IDField } from '@ptc-org/nestjs-query-graphql';
@InputType()
export class ServerlessFunctionIdInput {
@IDField(() => ID, { description: 'The id of the function.' })
id!: string;
}