Spaces:
Build error
Build error
twenty / packages /twenty-server /src /engine /metadata-modules /logic-function /dtos /execute-logic-function.input.ts
| import { Field, InputType } from '@nestjs/graphql'; | |
| import { IsNotEmpty, IsObject, IsUUID } from 'class-validator'; | |
| import graphqlTypeJson from 'graphql-type-json'; | |
| import { UUIDScalarType } from 'src/engine/api/graphql/workspace-schema-builder/graphql-types/scalars'; | |
| () | |
| export class ExecuteOneLogicFunctionInput { | |
| (() => UUIDScalarType, { | |
| description: 'Id of the logic function to execute', | |
| }) | |
| () | |
| () | |
| id: string; | |
| (() => graphqlTypeJson, { | |
| description: 'Payload in JSON format', | |
| }) | |
| () | |
| payload: JSON; | |
| } | |