Jules
Initial clean CRM deployment with prebuilt assets
d9494a5
Raw
History Blame Contribute Delete
619 Bytes
import { Field, InputType } from '@nestjs/graphql';
import { UUIDScalarType } from 'src/engine/api/graphql/workspace-schema-builder/graphql-types/scalars';
@InputType('LogicFunctionLogsInput')
export class LogicFunctionLogsInput {
@Field(() => UUIDScalarType, { nullable: true })
applicationId?: string;
@Field(() => UUIDScalarType, { nullable: true })
applicationUniversalIdentifier?: string;
@Field(() => String, { nullable: true })
name?: string;
@Field(() => UUIDScalarType, { nullable: true })
id?: string;
@Field(() => UUIDScalarType, { nullable: true })
universalIdentifier?: string;
}