File size: 619 Bytes
d9494a5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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;
}