Disable linter on generated code (#363)

This commit is contained in:
Félix Malfait
2023-06-23 08:43:41 -07:00
committed by GitHub
parent ceaf482f62
commit 1c7980b270
976 changed files with 14917 additions and 15292 deletions

View File

@ -6,12 +6,13 @@ import { WorkspaceMaxAggregate } from './workspace-max-aggregate.output';
@ObjectType()
export class AggregateWorkspace {
@Field(() => WorkspaceCountAggregate, { nullable: true })
_count?: WorkspaceCountAggregate;
@Field(() => WorkspaceMinAggregate, { nullable: true })
_min?: WorkspaceMinAggregate;
@Field(() => WorkspaceCountAggregate, {nullable:true})
_count?: WorkspaceCountAggregate;
@Field(() => WorkspaceMaxAggregate, { nullable: true })
_max?: WorkspaceMaxAggregate;
@Field(() => WorkspaceMinAggregate, {nullable:true})
_min?: WorkspaceMinAggregate;
@Field(() => WorkspaceMaxAggregate, {nullable:true})
_max?: WorkspaceMaxAggregate;
}

View File

@ -5,10 +5,11 @@ import { Type } from 'class-transformer';
@ArgsType()
export class CreateManyWorkspaceArgs {
@Field(() => [WorkspaceCreateManyInput], { nullable: false })
@Type(() => WorkspaceCreateManyInput)
data!: Array<WorkspaceCreateManyInput>;
@Field(() => Boolean, { nullable: true })
skipDuplicates?: boolean;
@Field(() => [WorkspaceCreateManyInput], {nullable:false})
@Type(() => WorkspaceCreateManyInput)
data!: Array<WorkspaceCreateManyInput>;
@Field(() => Boolean, {nullable:true})
skipDuplicates?: boolean;
}

View File

@ -5,7 +5,8 @@ import { Type } from 'class-transformer';
@ArgsType()
export class CreateOneWorkspaceArgs {
@Field(() => WorkspaceCreateInput, { nullable: false })
@Type(() => WorkspaceCreateInput)
data!: WorkspaceCreateInput;
@Field(() => WorkspaceCreateInput, {nullable:false})
@Type(() => WorkspaceCreateInput)
data!: WorkspaceCreateInput;
}

View File

@ -5,7 +5,8 @@ import { Type } from 'class-transformer';
@ArgsType()
export class DeleteManyWorkspaceArgs {
@Field(() => WorkspaceWhereInput, { nullable: true })
@Type(() => WorkspaceWhereInput)
where?: WorkspaceWhereInput;
@Field(() => WorkspaceWhereInput, {nullable:true})
@Type(() => WorkspaceWhereInput)
where?: WorkspaceWhereInput;
}

View File

@ -5,7 +5,8 @@ import { Type } from 'class-transformer';
@ArgsType()
export class DeleteOneWorkspaceArgs {
@Field(() => WorkspaceWhereUniqueInput, { nullable: false })
@Type(() => WorkspaceWhereUniqueInput)
where!: WorkspaceWhereUniqueInput;
@Field(() => WorkspaceWhereUniqueInput, {nullable:false})
@Type(() => WorkspaceWhereUniqueInput)
where!: WorkspaceWhereUniqueInput;
}

View File

@ -9,22 +9,23 @@ import { WorkspaceScalarFieldEnum } from './workspace-scalar-field.enum';
@ArgsType()
export class FindFirstWorkspaceOrThrowArgs {
@Field(() => WorkspaceWhereInput, { nullable: true })
@Type(() => WorkspaceWhereInput)
where?: WorkspaceWhereInput;
@Field(() => [WorkspaceOrderByWithRelationInput], { nullable: true })
orderBy?: Array<WorkspaceOrderByWithRelationInput>;
@Field(() => WorkspaceWhereInput, {nullable:true})
@Type(() => WorkspaceWhereInput)
where?: WorkspaceWhereInput;
@Field(() => WorkspaceWhereUniqueInput, { nullable: true })
cursor?: WorkspaceWhereUniqueInput;
@Field(() => [WorkspaceOrderByWithRelationInput], {nullable:true})
orderBy?: Array<WorkspaceOrderByWithRelationInput>;
@Field(() => Int, { nullable: true })
take?: number;
@Field(() => WorkspaceWhereUniqueInput, {nullable:true})
cursor?: WorkspaceWhereUniqueInput;
@Field(() => Int, { nullable: true })
skip?: number;
@Field(() => Int, {nullable:true})
take?: number;
@Field(() => [WorkspaceScalarFieldEnum], { nullable: true })
distinct?: Array<keyof typeof WorkspaceScalarFieldEnum>;
@Field(() => Int, {nullable:true})
skip?: number;
@Field(() => [WorkspaceScalarFieldEnum], {nullable:true})
distinct?: Array<keyof typeof WorkspaceScalarFieldEnum>;
}

View File

@ -9,22 +9,23 @@ import { WorkspaceScalarFieldEnum } from './workspace-scalar-field.enum';
@ArgsType()
export class FindFirstWorkspaceArgs {
@Field(() => WorkspaceWhereInput, { nullable: true })
@Type(() => WorkspaceWhereInput)
where?: WorkspaceWhereInput;
@Field(() => [WorkspaceOrderByWithRelationInput], { nullable: true })
orderBy?: Array<WorkspaceOrderByWithRelationInput>;
@Field(() => WorkspaceWhereInput, {nullable:true})
@Type(() => WorkspaceWhereInput)
where?: WorkspaceWhereInput;
@Field(() => WorkspaceWhereUniqueInput, { nullable: true })
cursor?: WorkspaceWhereUniqueInput;
@Field(() => [WorkspaceOrderByWithRelationInput], {nullable:true})
orderBy?: Array<WorkspaceOrderByWithRelationInput>;
@Field(() => Int, { nullable: true })
take?: number;
@Field(() => WorkspaceWhereUniqueInput, {nullable:true})
cursor?: WorkspaceWhereUniqueInput;
@Field(() => Int, { nullable: true })
skip?: number;
@Field(() => Int, {nullable:true})
take?: number;
@Field(() => [WorkspaceScalarFieldEnum], { nullable: true })
distinct?: Array<keyof typeof WorkspaceScalarFieldEnum>;
@Field(() => Int, {nullable:true})
skip?: number;
@Field(() => [WorkspaceScalarFieldEnum], {nullable:true})
distinct?: Array<keyof typeof WorkspaceScalarFieldEnum>;
}

View File

@ -9,22 +9,23 @@ import { WorkspaceScalarFieldEnum } from './workspace-scalar-field.enum';
@ArgsType()
export class FindManyWorkspaceArgs {
@Field(() => WorkspaceWhereInput, { nullable: true })
@Type(() => WorkspaceWhereInput)
where?: WorkspaceWhereInput;
@Field(() => [WorkspaceOrderByWithRelationInput], { nullable: true })
orderBy?: Array<WorkspaceOrderByWithRelationInput>;
@Field(() => WorkspaceWhereInput, {nullable:true})
@Type(() => WorkspaceWhereInput)
where?: WorkspaceWhereInput;
@Field(() => WorkspaceWhereUniqueInput, { nullable: true })
cursor?: WorkspaceWhereUniqueInput;
@Field(() => [WorkspaceOrderByWithRelationInput], {nullable:true})
orderBy?: Array<WorkspaceOrderByWithRelationInput>;
@Field(() => Int, { nullable: true })
take?: number;
@Field(() => WorkspaceWhereUniqueInput, {nullable:true})
cursor?: WorkspaceWhereUniqueInput;
@Field(() => Int, { nullable: true })
skip?: number;
@Field(() => Int, {nullable:true})
take?: number;
@Field(() => [WorkspaceScalarFieldEnum], { nullable: true })
distinct?: Array<keyof typeof WorkspaceScalarFieldEnum>;
@Field(() => Int, {nullable:true})
skip?: number;
@Field(() => [WorkspaceScalarFieldEnum], {nullable:true})
distinct?: Array<keyof typeof WorkspaceScalarFieldEnum>;
}

View File

@ -5,7 +5,8 @@ import { Type } from 'class-transformer';
@ArgsType()
export class FindUniqueWorkspaceOrThrowArgs {
@Field(() => WorkspaceWhereUniqueInput, { nullable: false })
@Type(() => WorkspaceWhereUniqueInput)
where!: WorkspaceWhereUniqueInput;
@Field(() => WorkspaceWhereUniqueInput, {nullable:false})
@Type(() => WorkspaceWhereUniqueInput)
where!: WorkspaceWhereUniqueInput;
}

View File

@ -5,7 +5,8 @@ import { Type } from 'class-transformer';
@ArgsType()
export class FindUniqueWorkspaceArgs {
@Field(() => WorkspaceWhereUniqueInput, { nullable: false })
@Type(() => WorkspaceWhereUniqueInput)
where!: WorkspaceWhereUniqueInput;
@Field(() => WorkspaceWhereUniqueInput, {nullable:false})
@Type(() => WorkspaceWhereUniqueInput)
where!: WorkspaceWhereUniqueInput;
}

View File

@ -6,11 +6,12 @@ import { WorkspaceWhereInput } from './workspace-where.input';
@ArgsType()
export class UpdateManyWorkspaceArgs {
@Field(() => WorkspaceUpdateManyMutationInput, { nullable: false })
@Type(() => WorkspaceUpdateManyMutationInput)
data!: WorkspaceUpdateManyMutationInput;
@Field(() => WorkspaceWhereInput, { nullable: true })
@Type(() => WorkspaceWhereInput)
where?: WorkspaceWhereInput;
@Field(() => WorkspaceUpdateManyMutationInput, {nullable:false})
@Type(() => WorkspaceUpdateManyMutationInput)
data!: WorkspaceUpdateManyMutationInput;
@Field(() => WorkspaceWhereInput, {nullable:true})
@Type(() => WorkspaceWhereInput)
where?: WorkspaceWhereInput;
}

View File

@ -6,11 +6,12 @@ import { WorkspaceWhereUniqueInput } from './workspace-where-unique.input';
@ArgsType()
export class UpdateOneWorkspaceArgs {
@Field(() => WorkspaceUpdateInput, { nullable: false })
@Type(() => WorkspaceUpdateInput)
data!: WorkspaceUpdateInput;
@Field(() => WorkspaceWhereUniqueInput, { nullable: false })
@Type(() => WorkspaceWhereUniqueInput)
where!: WorkspaceWhereUniqueInput;
@Field(() => WorkspaceUpdateInput, {nullable:false})
@Type(() => WorkspaceUpdateInput)
data!: WorkspaceUpdateInput;
@Field(() => WorkspaceWhereUniqueInput, {nullable:false})
@Type(() => WorkspaceWhereUniqueInput)
where!: WorkspaceWhereUniqueInput;
}

View File

@ -7,15 +7,16 @@ import { WorkspaceUpdateInput } from './workspace-update.input';
@ArgsType()
export class UpsertOneWorkspaceArgs {
@Field(() => WorkspaceWhereUniqueInput, { nullable: false })
@Type(() => WorkspaceWhereUniqueInput)
where!: WorkspaceWhereUniqueInput;
@Field(() => WorkspaceCreateInput, { nullable: false })
@Type(() => WorkspaceCreateInput)
create!: WorkspaceCreateInput;
@Field(() => WorkspaceWhereUniqueInput, {nullable:false})
@Type(() => WorkspaceWhereUniqueInput)
where!: WorkspaceWhereUniqueInput;
@Field(() => WorkspaceUpdateInput, { nullable: false })
@Type(() => WorkspaceUpdateInput)
update!: WorkspaceUpdateInput;
@Field(() => WorkspaceCreateInput, {nullable:false})
@Type(() => WorkspaceCreateInput)
create!: WorkspaceCreateInput;
@Field(() => WorkspaceUpdateInput, {nullable:false})
@Type(() => WorkspaceUpdateInput)
update!: WorkspaceUpdateInput;
}

View File

@ -11,28 +11,29 @@ import { WorkspaceMaxAggregateInput } from './workspace-max-aggregate.input';
@ArgsType()
export class WorkspaceAggregateArgs {
@Field(() => WorkspaceWhereInput, { nullable: true })
@Type(() => WorkspaceWhereInput)
where?: WorkspaceWhereInput;
@Field(() => [WorkspaceOrderByWithRelationInput], { nullable: true })
orderBy?: Array<WorkspaceOrderByWithRelationInput>;
@Field(() => WorkspaceWhereInput, {nullable:true})
@Type(() => WorkspaceWhereInput)
where?: WorkspaceWhereInput;
@Field(() => WorkspaceWhereUniqueInput, { nullable: true })
cursor?: WorkspaceWhereUniqueInput;
@Field(() => [WorkspaceOrderByWithRelationInput], {nullable:true})
orderBy?: Array<WorkspaceOrderByWithRelationInput>;
@Field(() => Int, { nullable: true })
take?: number;
@Field(() => WorkspaceWhereUniqueInput, {nullable:true})
cursor?: WorkspaceWhereUniqueInput;
@Field(() => Int, { nullable: true })
skip?: number;
@Field(() => Int, {nullable:true})
take?: number;
@Field(() => WorkspaceCountAggregateInput, { nullable: true })
_count?: WorkspaceCountAggregateInput;
@Field(() => Int, {nullable:true})
skip?: number;
@Field(() => WorkspaceMinAggregateInput, { nullable: true })
_min?: WorkspaceMinAggregateInput;
@Field(() => WorkspaceCountAggregateInput, {nullable:true})
_count?: WorkspaceCountAggregateInput;
@Field(() => WorkspaceMaxAggregateInput, { nullable: true })
_max?: WorkspaceMaxAggregateInput;
@Field(() => WorkspaceMinAggregateInput, {nullable:true})
_min?: WorkspaceMinAggregateInput;
@Field(() => WorkspaceMaxAggregateInput, {nullable:true})
_max?: WorkspaceMaxAggregateInput;
}

View File

@ -3,27 +3,28 @@ import { InputType } from '@nestjs/graphql';
@InputType()
export class WorkspaceCountAggregateInput {
@Field(() => Boolean, { nullable: true })
id?: true;
@Field(() => Boolean, { nullable: true })
createdAt?: true;
@Field(() => Boolean, {nullable:true})
id?: true;
@Field(() => Boolean, { nullable: true })
updatedAt?: true;
@Field(() => Boolean, {nullable:true})
createdAt?: true;
@Field(() => Boolean, { nullable: true })
deletedAt?: true;
@Field(() => Boolean, {nullable:true})
updatedAt?: true;
@Field(() => Boolean, { nullable: true })
domainName?: true;
@Field(() => Boolean, {nullable:true})
deletedAt?: true;
@Field(() => Boolean, { nullable: true })
displayName?: true;
@Field(() => Boolean, {nullable:true})
domainName?: true;
@Field(() => Boolean, { nullable: true })
logo?: true;
@Field(() => Boolean, {nullable:true})
displayName?: true;
@Field(() => Boolean, { nullable: true })
_all?: true;
@Field(() => Boolean, {nullable:true})
logo?: true;
@Field(() => Boolean, {nullable:true})
_all?: true;
}

View File

@ -4,27 +4,28 @@ import { Int } from '@nestjs/graphql';
@ObjectType()
export class WorkspaceCountAggregate {
@Field(() => Int, { nullable: false })
id!: number;
@Field(() => Int, { nullable: false })
createdAt!: number;
@Field(() => Int, {nullable:false})
id!: number;
@Field(() => Int, { nullable: false })
updatedAt!: number;
@Field(() => Int, {nullable:false})
createdAt!: number;
@Field(() => Int, { nullable: false })
deletedAt!: number;
@Field(() => Int, {nullable:false})
updatedAt!: number;
@Field(() => Int, { nullable: false })
domainName!: number;
@Field(() => Int, {nullable:false})
deletedAt!: number;
@Field(() => Int, { nullable: false })
displayName!: number;
@Field(() => Int, {nullable:false})
domainName!: number;
@Field(() => Int, { nullable: false })
logo!: number;
@Field(() => Int, {nullable:false})
displayName!: number;
@Field(() => Int, { nullable: false })
_all!: number;
@Field(() => Int, {nullable:false})
logo!: number;
@Field(() => Int, {nullable:false})
_all!: number;
}

View File

@ -4,24 +4,25 @@ import { SortOrder } from '../prisma/sort-order.enum';
@InputType()
export class WorkspaceCountOrderByAggregateInput {
@Field(() => SortOrder, { nullable: true })
id?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
createdAt?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
id?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
updatedAt?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
createdAt?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
deletedAt?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
updatedAt?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
domainName?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
deletedAt?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
displayName?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
domainName?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
logo?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
displayName?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
logo?: keyof typeof SortOrder;
}

View File

@ -4,27 +4,28 @@ import { Int } from '@nestjs/graphql';
@ObjectType()
export class WorkspaceCount {
@Field(() => Int, { nullable: false })
workspaceMember?: number;
@Field(() => Int, { nullable: false })
companies?: number;
@Field(() => Int, {nullable:false})
workspaceMember?: number;
@Field(() => Int, { nullable: false })
people?: number;
@Field(() => Int, {nullable:false})
companies?: number;
@Field(() => Int, { nullable: false })
commentThreads?: number;
@Field(() => Int, {nullable:false})
people?: number;
@Field(() => Int, { nullable: false })
comments?: number;
@Field(() => Int, {nullable:false})
commentThreads?: number;
@Field(() => Int, { nullable: false })
pipelines?: number;
@Field(() => Int, {nullable:false})
comments?: number;
@Field(() => Int, { nullable: false })
pipelineStages?: number;
@Field(() => Int, {nullable:false})
pipelines?: number;
@Field(() => Int, { nullable: false })
pipelineProgresses?: number;
@Field(() => Int, {nullable:false})
pipelineStages?: number;
@Field(() => Int, {nullable:false})
pipelineProgresses?: number;
}

View File

@ -3,24 +3,25 @@ import { InputType } from '@nestjs/graphql';
@InputType()
export class WorkspaceCreateManyInput {
@Field(() => String, { nullable: true })
id?: string;
@Field(() => Date, { nullable: true })
createdAt?: Date | string;
@Field(() => String, {nullable:true})
id?: string;
@Field(() => Date, { nullable: true })
updatedAt?: Date | string;
@Field(() => Date, {nullable:true})
createdAt?: Date | string;
@Field(() => Date, { nullable: true })
deletedAt?: Date | string;
@Field(() => Date, {nullable:true})
updatedAt?: Date | string;
@Field(() => String, { nullable: false })
domainName!: string;
@Field(() => Date, {nullable:true})
deletedAt?: Date | string;
@Field(() => String, { nullable: false })
displayName!: string;
@Field(() => String, {nullable:false})
domainName!: string;
@Field(() => String, { nullable: true })
logo?: string;
@Field(() => String, {nullable:false})
displayName!: string;
@Field(() => String, {nullable:true})
logo?: string;
}

View File

@ -7,17 +7,16 @@ import { WorkspaceWhereUniqueInput } from './workspace-where-unique.input';
@InputType()
export class WorkspaceCreateNestedOneWithoutCommentThreadsInput {
@Field(() => WorkspaceCreateWithoutCommentThreadsInput, { nullable: true })
@Type(() => WorkspaceCreateWithoutCommentThreadsInput)
create?: WorkspaceCreateWithoutCommentThreadsInput;
@Field(() => WorkspaceCreateOrConnectWithoutCommentThreadsInput, {
nullable: true,
})
@Type(() => WorkspaceCreateOrConnectWithoutCommentThreadsInput)
connectOrCreate?: WorkspaceCreateOrConnectWithoutCommentThreadsInput;
@Field(() => WorkspaceCreateWithoutCommentThreadsInput, {nullable:true})
@Type(() => WorkspaceCreateWithoutCommentThreadsInput)
create?: WorkspaceCreateWithoutCommentThreadsInput;
@Field(() => WorkspaceWhereUniqueInput, { nullable: true })
@Type(() => WorkspaceWhereUniqueInput)
connect?: WorkspaceWhereUniqueInput;
@Field(() => WorkspaceCreateOrConnectWithoutCommentThreadsInput, {nullable:true})
@Type(() => WorkspaceCreateOrConnectWithoutCommentThreadsInput)
connectOrCreate?: WorkspaceCreateOrConnectWithoutCommentThreadsInput;
@Field(() => WorkspaceWhereUniqueInput, {nullable:true})
@Type(() => WorkspaceWhereUniqueInput)
connect?: WorkspaceWhereUniqueInput;
}

View File

@ -7,15 +7,16 @@ import { WorkspaceWhereUniqueInput } from './workspace-where-unique.input';
@InputType()
export class WorkspaceCreateNestedOneWithoutCommentsInput {
@Field(() => WorkspaceCreateWithoutCommentsInput, { nullable: true })
@Type(() => WorkspaceCreateWithoutCommentsInput)
create?: WorkspaceCreateWithoutCommentsInput;
@Field(() => WorkspaceCreateOrConnectWithoutCommentsInput, { nullable: true })
@Type(() => WorkspaceCreateOrConnectWithoutCommentsInput)
connectOrCreate?: WorkspaceCreateOrConnectWithoutCommentsInput;
@Field(() => WorkspaceCreateWithoutCommentsInput, {nullable:true})
@Type(() => WorkspaceCreateWithoutCommentsInput)
create?: WorkspaceCreateWithoutCommentsInput;
@Field(() => WorkspaceWhereUniqueInput, { nullable: true })
@Type(() => WorkspaceWhereUniqueInput)
connect?: WorkspaceWhereUniqueInput;
@Field(() => WorkspaceCreateOrConnectWithoutCommentsInput, {nullable:true})
@Type(() => WorkspaceCreateOrConnectWithoutCommentsInput)
connectOrCreate?: WorkspaceCreateOrConnectWithoutCommentsInput;
@Field(() => WorkspaceWhereUniqueInput, {nullable:true})
@Type(() => WorkspaceWhereUniqueInput)
connect?: WorkspaceWhereUniqueInput;
}

View File

@ -7,17 +7,16 @@ import { WorkspaceWhereUniqueInput } from './workspace-where-unique.input';
@InputType()
export class WorkspaceCreateNestedOneWithoutCompaniesInput {
@Field(() => WorkspaceCreateWithoutCompaniesInput, { nullable: true })
@Type(() => WorkspaceCreateWithoutCompaniesInput)
create?: WorkspaceCreateWithoutCompaniesInput;
@Field(() => WorkspaceCreateOrConnectWithoutCompaniesInput, {
nullable: true,
})
@Type(() => WorkspaceCreateOrConnectWithoutCompaniesInput)
connectOrCreate?: WorkspaceCreateOrConnectWithoutCompaniesInput;
@Field(() => WorkspaceCreateWithoutCompaniesInput, {nullable:true})
@Type(() => WorkspaceCreateWithoutCompaniesInput)
create?: WorkspaceCreateWithoutCompaniesInput;
@Field(() => WorkspaceWhereUniqueInput, { nullable: true })
@Type(() => WorkspaceWhereUniqueInput)
connect?: WorkspaceWhereUniqueInput;
@Field(() => WorkspaceCreateOrConnectWithoutCompaniesInput, {nullable:true})
@Type(() => WorkspaceCreateOrConnectWithoutCompaniesInput)
connectOrCreate?: WorkspaceCreateOrConnectWithoutCompaniesInput;
@Field(() => WorkspaceWhereUniqueInput, {nullable:true})
@Type(() => WorkspaceWhereUniqueInput)
connect?: WorkspaceWhereUniqueInput;
}

View File

@ -7,15 +7,16 @@ import { WorkspaceWhereUniqueInput } from './workspace-where-unique.input';
@InputType()
export class WorkspaceCreateNestedOneWithoutPeopleInput {
@Field(() => WorkspaceCreateWithoutPeopleInput, { nullable: true })
@Type(() => WorkspaceCreateWithoutPeopleInput)
create?: WorkspaceCreateWithoutPeopleInput;
@Field(() => WorkspaceCreateOrConnectWithoutPeopleInput, { nullable: true })
@Type(() => WorkspaceCreateOrConnectWithoutPeopleInput)
connectOrCreate?: WorkspaceCreateOrConnectWithoutPeopleInput;
@Field(() => WorkspaceCreateWithoutPeopleInput, {nullable:true})
@Type(() => WorkspaceCreateWithoutPeopleInput)
create?: WorkspaceCreateWithoutPeopleInput;
@Field(() => WorkspaceWhereUniqueInput, { nullable: true })
@Type(() => WorkspaceWhereUniqueInput)
connect?: WorkspaceWhereUniqueInput;
@Field(() => WorkspaceCreateOrConnectWithoutPeopleInput, {nullable:true})
@Type(() => WorkspaceCreateOrConnectWithoutPeopleInput)
connectOrCreate?: WorkspaceCreateOrConnectWithoutPeopleInput;
@Field(() => WorkspaceWhereUniqueInput, {nullable:true})
@Type(() => WorkspaceWhereUniqueInput)
connect?: WorkspaceWhereUniqueInput;
}

View File

@ -7,19 +7,16 @@ import { WorkspaceWhereUniqueInput } from './workspace-where-unique.input';
@InputType()
export class WorkspaceCreateNestedOneWithoutPipelineProgressesInput {
@Field(() => WorkspaceCreateWithoutPipelineProgressesInput, {
nullable: true,
})
@Type(() => WorkspaceCreateWithoutPipelineProgressesInput)
create?: WorkspaceCreateWithoutPipelineProgressesInput;
@Field(() => WorkspaceCreateOrConnectWithoutPipelineProgressesInput, {
nullable: true,
})
@Type(() => WorkspaceCreateOrConnectWithoutPipelineProgressesInput)
connectOrCreate?: WorkspaceCreateOrConnectWithoutPipelineProgressesInput;
@Field(() => WorkspaceCreateWithoutPipelineProgressesInput, {nullable:true})
@Type(() => WorkspaceCreateWithoutPipelineProgressesInput)
create?: WorkspaceCreateWithoutPipelineProgressesInput;
@Field(() => WorkspaceWhereUniqueInput, { nullable: true })
@Type(() => WorkspaceWhereUniqueInput)
connect?: WorkspaceWhereUniqueInput;
@Field(() => WorkspaceCreateOrConnectWithoutPipelineProgressesInput, {nullable:true})
@Type(() => WorkspaceCreateOrConnectWithoutPipelineProgressesInput)
connectOrCreate?: WorkspaceCreateOrConnectWithoutPipelineProgressesInput;
@Field(() => WorkspaceWhereUniqueInput, {nullable:true})
@Type(() => WorkspaceWhereUniqueInput)
connect?: WorkspaceWhereUniqueInput;
}

View File

@ -7,17 +7,16 @@ import { WorkspaceWhereUniqueInput } from './workspace-where-unique.input';
@InputType()
export class WorkspaceCreateNestedOneWithoutPipelineStagesInput {
@Field(() => WorkspaceCreateWithoutPipelineStagesInput, { nullable: true })
@Type(() => WorkspaceCreateWithoutPipelineStagesInput)
create?: WorkspaceCreateWithoutPipelineStagesInput;
@Field(() => WorkspaceCreateOrConnectWithoutPipelineStagesInput, {
nullable: true,
})
@Type(() => WorkspaceCreateOrConnectWithoutPipelineStagesInput)
connectOrCreate?: WorkspaceCreateOrConnectWithoutPipelineStagesInput;
@Field(() => WorkspaceCreateWithoutPipelineStagesInput, {nullable:true})
@Type(() => WorkspaceCreateWithoutPipelineStagesInput)
create?: WorkspaceCreateWithoutPipelineStagesInput;
@Field(() => WorkspaceWhereUniqueInput, { nullable: true })
@Type(() => WorkspaceWhereUniqueInput)
connect?: WorkspaceWhereUniqueInput;
@Field(() => WorkspaceCreateOrConnectWithoutPipelineStagesInput, {nullable:true})
@Type(() => WorkspaceCreateOrConnectWithoutPipelineStagesInput)
connectOrCreate?: WorkspaceCreateOrConnectWithoutPipelineStagesInput;
@Field(() => WorkspaceWhereUniqueInput, {nullable:true})
@Type(() => WorkspaceWhereUniqueInput)
connect?: WorkspaceWhereUniqueInput;
}

View File

@ -7,17 +7,16 @@ import { WorkspaceWhereUniqueInput } from './workspace-where-unique.input';
@InputType()
export class WorkspaceCreateNestedOneWithoutPipelinesInput {
@Field(() => WorkspaceCreateWithoutPipelinesInput, { nullable: true })
@Type(() => WorkspaceCreateWithoutPipelinesInput)
create?: WorkspaceCreateWithoutPipelinesInput;
@Field(() => WorkspaceCreateOrConnectWithoutPipelinesInput, {
nullable: true,
})
@Type(() => WorkspaceCreateOrConnectWithoutPipelinesInput)
connectOrCreate?: WorkspaceCreateOrConnectWithoutPipelinesInput;
@Field(() => WorkspaceCreateWithoutPipelinesInput, {nullable:true})
@Type(() => WorkspaceCreateWithoutPipelinesInput)
create?: WorkspaceCreateWithoutPipelinesInput;
@Field(() => WorkspaceWhereUniqueInput, { nullable: true })
@Type(() => WorkspaceWhereUniqueInput)
connect?: WorkspaceWhereUniqueInput;
@Field(() => WorkspaceCreateOrConnectWithoutPipelinesInput, {nullable:true})
@Type(() => WorkspaceCreateOrConnectWithoutPipelinesInput)
connectOrCreate?: WorkspaceCreateOrConnectWithoutPipelinesInput;
@Field(() => WorkspaceWhereUniqueInput, {nullable:true})
@Type(() => WorkspaceWhereUniqueInput)
connect?: WorkspaceWhereUniqueInput;
}

View File

@ -7,17 +7,16 @@ import { WorkspaceWhereUniqueInput } from './workspace-where-unique.input';
@InputType()
export class WorkspaceCreateNestedOneWithoutWorkspaceMemberInput {
@Field(() => WorkspaceCreateWithoutWorkspaceMemberInput, { nullable: true })
@Type(() => WorkspaceCreateWithoutWorkspaceMemberInput)
create?: WorkspaceCreateWithoutWorkspaceMemberInput;
@Field(() => WorkspaceCreateOrConnectWithoutWorkspaceMemberInput, {
nullable: true,
})
@Type(() => WorkspaceCreateOrConnectWithoutWorkspaceMemberInput)
connectOrCreate?: WorkspaceCreateOrConnectWithoutWorkspaceMemberInput;
@Field(() => WorkspaceCreateWithoutWorkspaceMemberInput, {nullable:true})
@Type(() => WorkspaceCreateWithoutWorkspaceMemberInput)
create?: WorkspaceCreateWithoutWorkspaceMemberInput;
@Field(() => WorkspaceWhereUniqueInput, { nullable: true })
@Type(() => WorkspaceWhereUniqueInput)
connect?: WorkspaceWhereUniqueInput;
@Field(() => WorkspaceCreateOrConnectWithoutWorkspaceMemberInput, {nullable:true})
@Type(() => WorkspaceCreateOrConnectWithoutWorkspaceMemberInput)
connectOrCreate?: WorkspaceCreateOrConnectWithoutWorkspaceMemberInput;
@Field(() => WorkspaceWhereUniqueInput, {nullable:true})
@Type(() => WorkspaceWhereUniqueInput)
connect?: WorkspaceWhereUniqueInput;
}

View File

@ -6,11 +6,12 @@ import { WorkspaceCreateWithoutCommentThreadsInput } from './workspace-create-wi
@InputType()
export class WorkspaceCreateOrConnectWithoutCommentThreadsInput {
@Field(() => WorkspaceWhereUniqueInput, { nullable: false })
@Type(() => WorkspaceWhereUniqueInput)
where!: WorkspaceWhereUniqueInput;
@Field(() => WorkspaceCreateWithoutCommentThreadsInput, { nullable: false })
@Type(() => WorkspaceCreateWithoutCommentThreadsInput)
create!: WorkspaceCreateWithoutCommentThreadsInput;
@Field(() => WorkspaceWhereUniqueInput, {nullable:false})
@Type(() => WorkspaceWhereUniqueInput)
where!: WorkspaceWhereUniqueInput;
@Field(() => WorkspaceCreateWithoutCommentThreadsInput, {nullable:false})
@Type(() => WorkspaceCreateWithoutCommentThreadsInput)
create!: WorkspaceCreateWithoutCommentThreadsInput;
}

View File

@ -6,11 +6,12 @@ import { WorkspaceCreateWithoutCommentsInput } from './workspace-create-without-
@InputType()
export class WorkspaceCreateOrConnectWithoutCommentsInput {
@Field(() => WorkspaceWhereUniqueInput, { nullable: false })
@Type(() => WorkspaceWhereUniqueInput)
where!: WorkspaceWhereUniqueInput;
@Field(() => WorkspaceCreateWithoutCommentsInput, { nullable: false })
@Type(() => WorkspaceCreateWithoutCommentsInput)
create!: WorkspaceCreateWithoutCommentsInput;
@Field(() => WorkspaceWhereUniqueInput, {nullable:false})
@Type(() => WorkspaceWhereUniqueInput)
where!: WorkspaceWhereUniqueInput;
@Field(() => WorkspaceCreateWithoutCommentsInput, {nullable:false})
@Type(() => WorkspaceCreateWithoutCommentsInput)
create!: WorkspaceCreateWithoutCommentsInput;
}

View File

@ -6,11 +6,12 @@ import { WorkspaceCreateWithoutCompaniesInput } from './workspace-create-without
@InputType()
export class WorkspaceCreateOrConnectWithoutCompaniesInput {
@Field(() => WorkspaceWhereUniqueInput, { nullable: false })
@Type(() => WorkspaceWhereUniqueInput)
where!: WorkspaceWhereUniqueInput;
@Field(() => WorkspaceCreateWithoutCompaniesInput, { nullable: false })
@Type(() => WorkspaceCreateWithoutCompaniesInput)
create!: WorkspaceCreateWithoutCompaniesInput;
@Field(() => WorkspaceWhereUniqueInput, {nullable:false})
@Type(() => WorkspaceWhereUniqueInput)
where!: WorkspaceWhereUniqueInput;
@Field(() => WorkspaceCreateWithoutCompaniesInput, {nullable:false})
@Type(() => WorkspaceCreateWithoutCompaniesInput)
create!: WorkspaceCreateWithoutCompaniesInput;
}

View File

@ -6,11 +6,12 @@ import { WorkspaceCreateWithoutPeopleInput } from './workspace-create-without-pe
@InputType()
export class WorkspaceCreateOrConnectWithoutPeopleInput {
@Field(() => WorkspaceWhereUniqueInput, { nullable: false })
@Type(() => WorkspaceWhereUniqueInput)
where!: WorkspaceWhereUniqueInput;
@Field(() => WorkspaceCreateWithoutPeopleInput, { nullable: false })
@Type(() => WorkspaceCreateWithoutPeopleInput)
create!: WorkspaceCreateWithoutPeopleInput;
@Field(() => WorkspaceWhereUniqueInput, {nullable:false})
@Type(() => WorkspaceWhereUniqueInput)
where!: WorkspaceWhereUniqueInput;
@Field(() => WorkspaceCreateWithoutPeopleInput, {nullable:false})
@Type(() => WorkspaceCreateWithoutPeopleInput)
create!: WorkspaceCreateWithoutPeopleInput;
}

View File

@ -6,13 +6,12 @@ import { WorkspaceCreateWithoutPipelineProgressesInput } from './workspace-creat
@InputType()
export class WorkspaceCreateOrConnectWithoutPipelineProgressesInput {
@Field(() => WorkspaceWhereUniqueInput, { nullable: false })
@Type(() => WorkspaceWhereUniqueInput)
where!: WorkspaceWhereUniqueInput;
@Field(() => WorkspaceCreateWithoutPipelineProgressesInput, {
nullable: false,
})
@Type(() => WorkspaceCreateWithoutPipelineProgressesInput)
create!: WorkspaceCreateWithoutPipelineProgressesInput;
@Field(() => WorkspaceWhereUniqueInput, {nullable:false})
@Type(() => WorkspaceWhereUniqueInput)
where!: WorkspaceWhereUniqueInput;
@Field(() => WorkspaceCreateWithoutPipelineProgressesInput, {nullable:false})
@Type(() => WorkspaceCreateWithoutPipelineProgressesInput)
create!: WorkspaceCreateWithoutPipelineProgressesInput;
}

View File

@ -6,11 +6,12 @@ import { WorkspaceCreateWithoutPipelineStagesInput } from './workspace-create-wi
@InputType()
export class WorkspaceCreateOrConnectWithoutPipelineStagesInput {
@Field(() => WorkspaceWhereUniqueInput, { nullable: false })
@Type(() => WorkspaceWhereUniqueInput)
where!: WorkspaceWhereUniqueInput;
@Field(() => WorkspaceCreateWithoutPipelineStagesInput, { nullable: false })
@Type(() => WorkspaceCreateWithoutPipelineStagesInput)
create!: WorkspaceCreateWithoutPipelineStagesInput;
@Field(() => WorkspaceWhereUniqueInput, {nullable:false})
@Type(() => WorkspaceWhereUniqueInput)
where!: WorkspaceWhereUniqueInput;
@Field(() => WorkspaceCreateWithoutPipelineStagesInput, {nullable:false})
@Type(() => WorkspaceCreateWithoutPipelineStagesInput)
create!: WorkspaceCreateWithoutPipelineStagesInput;
}

View File

@ -6,11 +6,12 @@ import { WorkspaceCreateWithoutPipelinesInput } from './workspace-create-without
@InputType()
export class WorkspaceCreateOrConnectWithoutPipelinesInput {
@Field(() => WorkspaceWhereUniqueInput, { nullable: false })
@Type(() => WorkspaceWhereUniqueInput)
where!: WorkspaceWhereUniqueInput;
@Field(() => WorkspaceCreateWithoutPipelinesInput, { nullable: false })
@Type(() => WorkspaceCreateWithoutPipelinesInput)
create!: WorkspaceCreateWithoutPipelinesInput;
@Field(() => WorkspaceWhereUniqueInput, {nullable:false})
@Type(() => WorkspaceWhereUniqueInput)
where!: WorkspaceWhereUniqueInput;
@Field(() => WorkspaceCreateWithoutPipelinesInput, {nullable:false})
@Type(() => WorkspaceCreateWithoutPipelinesInput)
create!: WorkspaceCreateWithoutPipelinesInput;
}

View File

@ -6,11 +6,12 @@ import { WorkspaceCreateWithoutWorkspaceMemberInput } from './workspace-create-w
@InputType()
export class WorkspaceCreateOrConnectWithoutWorkspaceMemberInput {
@Field(() => WorkspaceWhereUniqueInput, { nullable: false })
@Type(() => WorkspaceWhereUniqueInput)
where!: WorkspaceWhereUniqueInput;
@Field(() => WorkspaceCreateWithoutWorkspaceMemberInput, { nullable: false })
@Type(() => WorkspaceCreateWithoutWorkspaceMemberInput)
create!: WorkspaceCreateWithoutWorkspaceMemberInput;
@Field(() => WorkspaceWhereUniqueInput, {nullable:false})
@Type(() => WorkspaceWhereUniqueInput)
where!: WorkspaceWhereUniqueInput;
@Field(() => WorkspaceCreateWithoutWorkspaceMemberInput, {nullable:false})
@Type(() => WorkspaceCreateWithoutWorkspaceMemberInput)
create!: WorkspaceCreateWithoutWorkspaceMemberInput;
}

View File

@ -10,53 +10,46 @@ import { PipelineProgressCreateNestedManyWithoutWorkspaceInput } from '../pipeli
@InputType()
export class WorkspaceCreateWithoutCommentThreadsInput {
@Field(() => String, { nullable: true })
id?: string;
@Field(() => Date, { nullable: true })
createdAt?: Date | string;
@Field(() => String, {nullable:true})
id?: string;
@Field(() => Date, { nullable: true })
updatedAt?: Date | string;
@Field(() => Date, {nullable:true})
createdAt?: Date | string;
@Field(() => Date, { nullable: true })
deletedAt?: Date | string;
@Field(() => Date, {nullable:true})
updatedAt?: Date | string;
@Field(() => String, { nullable: false })
domainName!: string;
@Field(() => Date, {nullable:true})
deletedAt?: Date | string;
@Field(() => String, { nullable: false })
displayName!: string;
@Field(() => String, {nullable:false})
domainName!: string;
@Field(() => String, { nullable: true })
logo?: string;
@Field(() => String, {nullable:false})
displayName!: string;
@Field(() => WorkspaceMemberCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
workspaceMember?: WorkspaceMemberCreateNestedManyWithoutWorkspaceInput;
@Field(() => String, {nullable:true})
logo?: string;
@Field(() => CompanyCreateNestedManyWithoutWorkspaceInput, { nullable: true })
companies?: CompanyCreateNestedManyWithoutWorkspaceInput;
@Field(() => WorkspaceMemberCreateNestedManyWithoutWorkspaceInput, {nullable:true})
workspaceMember?: WorkspaceMemberCreateNestedManyWithoutWorkspaceInput;
@Field(() => PersonCreateNestedManyWithoutWorkspaceInput, { nullable: true })
people?: PersonCreateNestedManyWithoutWorkspaceInput;
@Field(() => CompanyCreateNestedManyWithoutWorkspaceInput, {nullable:true})
companies?: CompanyCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentCreateNestedManyWithoutWorkspaceInput, { nullable: true })
comments?: CommentCreateNestedManyWithoutWorkspaceInput;
@Field(() => PersonCreateNestedManyWithoutWorkspaceInput, {nullable:true})
people?: PersonCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
pipelines?: PipelineCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentCreateNestedManyWithoutWorkspaceInput, {nullable:true})
comments?: CommentCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineStageCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
pipelineStages?: PipelineStageCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineCreateNestedManyWithoutWorkspaceInput, {nullable:true})
pipelines?: PipelineCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineProgressCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
pipelineProgresses?: PipelineProgressCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineStageCreateNestedManyWithoutWorkspaceInput, {nullable:true})
pipelineStages?: PipelineStageCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineProgressCreateNestedManyWithoutWorkspaceInput, {nullable:true})
pipelineProgresses?: PipelineProgressCreateNestedManyWithoutWorkspaceInput;
}

View File

@ -10,55 +10,46 @@ import { PipelineProgressCreateNestedManyWithoutWorkspaceInput } from '../pipeli
@InputType()
export class WorkspaceCreateWithoutCommentsInput {
@Field(() => String, { nullable: true })
id?: string;
@Field(() => Date, { nullable: true })
createdAt?: Date | string;
@Field(() => String, {nullable:true})
id?: string;
@Field(() => Date, { nullable: true })
updatedAt?: Date | string;
@Field(() => Date, {nullable:true})
createdAt?: Date | string;
@Field(() => Date, { nullable: true })
deletedAt?: Date | string;
@Field(() => Date, {nullable:true})
updatedAt?: Date | string;
@Field(() => String, { nullable: false })
domainName!: string;
@Field(() => Date, {nullable:true})
deletedAt?: Date | string;
@Field(() => String, { nullable: false })
displayName!: string;
@Field(() => String, {nullable:false})
domainName!: string;
@Field(() => String, { nullable: true })
logo?: string;
@Field(() => String, {nullable:false})
displayName!: string;
@Field(() => WorkspaceMemberCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
workspaceMember?: WorkspaceMemberCreateNestedManyWithoutWorkspaceInput;
@Field(() => String, {nullable:true})
logo?: string;
@Field(() => CompanyCreateNestedManyWithoutWorkspaceInput, { nullable: true })
companies?: CompanyCreateNestedManyWithoutWorkspaceInput;
@Field(() => WorkspaceMemberCreateNestedManyWithoutWorkspaceInput, {nullable:true})
workspaceMember?: WorkspaceMemberCreateNestedManyWithoutWorkspaceInput;
@Field(() => PersonCreateNestedManyWithoutWorkspaceInput, { nullable: true })
people?: PersonCreateNestedManyWithoutWorkspaceInput;
@Field(() => CompanyCreateNestedManyWithoutWorkspaceInput, {nullable:true})
companies?: CompanyCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentThreadCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
commentThreads?: CommentThreadCreateNestedManyWithoutWorkspaceInput;
@Field(() => PersonCreateNestedManyWithoutWorkspaceInput, {nullable:true})
people?: PersonCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
pipelines?: PipelineCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentThreadCreateNestedManyWithoutWorkspaceInput, {nullable:true})
commentThreads?: CommentThreadCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineStageCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
pipelineStages?: PipelineStageCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineCreateNestedManyWithoutWorkspaceInput, {nullable:true})
pipelines?: PipelineCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineProgressCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
pipelineProgresses?: PipelineProgressCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineStageCreateNestedManyWithoutWorkspaceInput, {nullable:true})
pipelineStages?: PipelineStageCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineProgressCreateNestedManyWithoutWorkspaceInput, {nullable:true})
pipelineProgresses?: PipelineProgressCreateNestedManyWithoutWorkspaceInput;
}

View File

@ -10,55 +10,46 @@ import { PipelineProgressCreateNestedManyWithoutWorkspaceInput } from '../pipeli
@InputType()
export class WorkspaceCreateWithoutCompaniesInput {
@Field(() => String, { nullable: true })
id?: string;
@Field(() => Date, { nullable: true })
createdAt?: Date | string;
@Field(() => String, {nullable:true})
id?: string;
@Field(() => Date, { nullable: true })
updatedAt?: Date | string;
@Field(() => Date, {nullable:true})
createdAt?: Date | string;
@Field(() => Date, { nullable: true })
deletedAt?: Date | string;
@Field(() => Date, {nullable:true})
updatedAt?: Date | string;
@Field(() => String, { nullable: false })
domainName!: string;
@Field(() => Date, {nullable:true})
deletedAt?: Date | string;
@Field(() => String, { nullable: false })
displayName!: string;
@Field(() => String, {nullable:false})
domainName!: string;
@Field(() => String, { nullable: true })
logo?: string;
@Field(() => String, {nullable:false})
displayName!: string;
@Field(() => WorkspaceMemberCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
workspaceMember?: WorkspaceMemberCreateNestedManyWithoutWorkspaceInput;
@Field(() => String, {nullable:true})
logo?: string;
@Field(() => PersonCreateNestedManyWithoutWorkspaceInput, { nullable: true })
people?: PersonCreateNestedManyWithoutWorkspaceInput;
@Field(() => WorkspaceMemberCreateNestedManyWithoutWorkspaceInput, {nullable:true})
workspaceMember?: WorkspaceMemberCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentThreadCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
commentThreads?: CommentThreadCreateNestedManyWithoutWorkspaceInput;
@Field(() => PersonCreateNestedManyWithoutWorkspaceInput, {nullable:true})
people?: PersonCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentCreateNestedManyWithoutWorkspaceInput, { nullable: true })
comments?: CommentCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentThreadCreateNestedManyWithoutWorkspaceInput, {nullable:true})
commentThreads?: CommentThreadCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
pipelines?: PipelineCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentCreateNestedManyWithoutWorkspaceInput, {nullable:true})
comments?: CommentCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineStageCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
pipelineStages?: PipelineStageCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineCreateNestedManyWithoutWorkspaceInput, {nullable:true})
pipelines?: PipelineCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineProgressCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
pipelineProgresses?: PipelineProgressCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineStageCreateNestedManyWithoutWorkspaceInput, {nullable:true})
pipelineStages?: PipelineStageCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineProgressCreateNestedManyWithoutWorkspaceInput, {nullable:true})
pipelineProgresses?: PipelineProgressCreateNestedManyWithoutWorkspaceInput;
}

View File

@ -10,55 +10,46 @@ import { PipelineProgressCreateNestedManyWithoutWorkspaceInput } from '../pipeli
@InputType()
export class WorkspaceCreateWithoutPeopleInput {
@Field(() => String, { nullable: true })
id?: string;
@Field(() => Date, { nullable: true })
createdAt?: Date | string;
@Field(() => String, {nullable:true})
id?: string;
@Field(() => Date, { nullable: true })
updatedAt?: Date | string;
@Field(() => Date, {nullable:true})
createdAt?: Date | string;
@Field(() => Date, { nullable: true })
deletedAt?: Date | string;
@Field(() => Date, {nullable:true})
updatedAt?: Date | string;
@Field(() => String, { nullable: false })
domainName!: string;
@Field(() => Date, {nullable:true})
deletedAt?: Date | string;
@Field(() => String, { nullable: false })
displayName!: string;
@Field(() => String, {nullable:false})
domainName!: string;
@Field(() => String, { nullable: true })
logo?: string;
@Field(() => String, {nullable:false})
displayName!: string;
@Field(() => WorkspaceMemberCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
workspaceMember?: WorkspaceMemberCreateNestedManyWithoutWorkspaceInput;
@Field(() => String, {nullable:true})
logo?: string;
@Field(() => CompanyCreateNestedManyWithoutWorkspaceInput, { nullable: true })
companies?: CompanyCreateNestedManyWithoutWorkspaceInput;
@Field(() => WorkspaceMemberCreateNestedManyWithoutWorkspaceInput, {nullable:true})
workspaceMember?: WorkspaceMemberCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentThreadCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
commentThreads?: CommentThreadCreateNestedManyWithoutWorkspaceInput;
@Field(() => CompanyCreateNestedManyWithoutWorkspaceInput, {nullable:true})
companies?: CompanyCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentCreateNestedManyWithoutWorkspaceInput, { nullable: true })
comments?: CommentCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentThreadCreateNestedManyWithoutWorkspaceInput, {nullable:true})
commentThreads?: CommentThreadCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
pipelines?: PipelineCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentCreateNestedManyWithoutWorkspaceInput, {nullable:true})
comments?: CommentCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineStageCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
pipelineStages?: PipelineStageCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineCreateNestedManyWithoutWorkspaceInput, {nullable:true})
pipelines?: PipelineCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineProgressCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
pipelineProgresses?: PipelineProgressCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineStageCreateNestedManyWithoutWorkspaceInput, {nullable:true})
pipelineStages?: PipelineStageCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineProgressCreateNestedManyWithoutWorkspaceInput, {nullable:true})
pipelineProgresses?: PipelineProgressCreateNestedManyWithoutWorkspaceInput;
}

View File

@ -10,53 +10,46 @@ import { PipelineStageCreateNestedManyWithoutWorkspaceInput } from '../pipeline-
@InputType()
export class WorkspaceCreateWithoutPipelineProgressesInput {
@Field(() => String, { nullable: true })
id?: string;
@Field(() => Date, { nullable: true })
createdAt?: Date | string;
@Field(() => String, {nullable:true})
id?: string;
@Field(() => Date, { nullable: true })
updatedAt?: Date | string;
@Field(() => Date, {nullable:true})
createdAt?: Date | string;
@Field(() => Date, { nullable: true })
deletedAt?: Date | string;
@Field(() => Date, {nullable:true})
updatedAt?: Date | string;
@Field(() => String, { nullable: false })
domainName!: string;
@Field(() => Date, {nullable:true})
deletedAt?: Date | string;
@Field(() => String, { nullable: false })
displayName!: string;
@Field(() => String, {nullable:false})
domainName!: string;
@Field(() => String, { nullable: true })
logo?: string;
@Field(() => String, {nullable:false})
displayName!: string;
@Field(() => WorkspaceMemberCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
workspaceMember?: WorkspaceMemberCreateNestedManyWithoutWorkspaceInput;
@Field(() => String, {nullable:true})
logo?: string;
@Field(() => CompanyCreateNestedManyWithoutWorkspaceInput, { nullable: true })
companies?: CompanyCreateNestedManyWithoutWorkspaceInput;
@Field(() => WorkspaceMemberCreateNestedManyWithoutWorkspaceInput, {nullable:true})
workspaceMember?: WorkspaceMemberCreateNestedManyWithoutWorkspaceInput;
@Field(() => PersonCreateNestedManyWithoutWorkspaceInput, { nullable: true })
people?: PersonCreateNestedManyWithoutWorkspaceInput;
@Field(() => CompanyCreateNestedManyWithoutWorkspaceInput, {nullable:true})
companies?: CompanyCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentThreadCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
commentThreads?: CommentThreadCreateNestedManyWithoutWorkspaceInput;
@Field(() => PersonCreateNestedManyWithoutWorkspaceInput, {nullable:true})
people?: PersonCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentCreateNestedManyWithoutWorkspaceInput, { nullable: true })
comments?: CommentCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentThreadCreateNestedManyWithoutWorkspaceInput, {nullable:true})
commentThreads?: CommentThreadCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
pipelines?: PipelineCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentCreateNestedManyWithoutWorkspaceInput, {nullable:true})
comments?: CommentCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineStageCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
pipelineStages?: PipelineStageCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineCreateNestedManyWithoutWorkspaceInput, {nullable:true})
pipelines?: PipelineCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineStageCreateNestedManyWithoutWorkspaceInput, {nullable:true})
pipelineStages?: PipelineStageCreateNestedManyWithoutWorkspaceInput;
}

View File

@ -10,53 +10,46 @@ import { PipelineProgressCreateNestedManyWithoutWorkspaceInput } from '../pipeli
@InputType()
export class WorkspaceCreateWithoutPipelineStagesInput {
@Field(() => String, { nullable: true })
id?: string;
@Field(() => Date, { nullable: true })
createdAt?: Date | string;
@Field(() => String, {nullable:true})
id?: string;
@Field(() => Date, { nullable: true })
updatedAt?: Date | string;
@Field(() => Date, {nullable:true})
createdAt?: Date | string;
@Field(() => Date, { nullable: true })
deletedAt?: Date | string;
@Field(() => Date, {nullable:true})
updatedAt?: Date | string;
@Field(() => String, { nullable: false })
domainName!: string;
@Field(() => Date, {nullable:true})
deletedAt?: Date | string;
@Field(() => String, { nullable: false })
displayName!: string;
@Field(() => String, {nullable:false})
domainName!: string;
@Field(() => String, { nullable: true })
logo?: string;
@Field(() => String, {nullable:false})
displayName!: string;
@Field(() => WorkspaceMemberCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
workspaceMember?: WorkspaceMemberCreateNestedManyWithoutWorkspaceInput;
@Field(() => String, {nullable:true})
logo?: string;
@Field(() => CompanyCreateNestedManyWithoutWorkspaceInput, { nullable: true })
companies?: CompanyCreateNestedManyWithoutWorkspaceInput;
@Field(() => WorkspaceMemberCreateNestedManyWithoutWorkspaceInput, {nullable:true})
workspaceMember?: WorkspaceMemberCreateNestedManyWithoutWorkspaceInput;
@Field(() => PersonCreateNestedManyWithoutWorkspaceInput, { nullable: true })
people?: PersonCreateNestedManyWithoutWorkspaceInput;
@Field(() => CompanyCreateNestedManyWithoutWorkspaceInput, {nullable:true})
companies?: CompanyCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentThreadCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
commentThreads?: CommentThreadCreateNestedManyWithoutWorkspaceInput;
@Field(() => PersonCreateNestedManyWithoutWorkspaceInput, {nullable:true})
people?: PersonCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentCreateNestedManyWithoutWorkspaceInput, { nullable: true })
comments?: CommentCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentThreadCreateNestedManyWithoutWorkspaceInput, {nullable:true})
commentThreads?: CommentThreadCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
pipelines?: PipelineCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentCreateNestedManyWithoutWorkspaceInput, {nullable:true})
comments?: CommentCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineProgressCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
pipelineProgresses?: PipelineProgressCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineCreateNestedManyWithoutWorkspaceInput, {nullable:true})
pipelines?: PipelineCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineProgressCreateNestedManyWithoutWorkspaceInput, {nullable:true})
pipelineProgresses?: PipelineProgressCreateNestedManyWithoutWorkspaceInput;
}

View File

@ -10,53 +10,46 @@ import { PipelineProgressCreateNestedManyWithoutWorkspaceInput } from '../pipeli
@InputType()
export class WorkspaceCreateWithoutPipelinesInput {
@Field(() => String, { nullable: true })
id?: string;
@Field(() => Date, { nullable: true })
createdAt?: Date | string;
@Field(() => String, {nullable:true})
id?: string;
@Field(() => Date, { nullable: true })
updatedAt?: Date | string;
@Field(() => Date, {nullable:true})
createdAt?: Date | string;
@Field(() => Date, { nullable: true })
deletedAt?: Date | string;
@Field(() => Date, {nullable:true})
updatedAt?: Date | string;
@Field(() => String, { nullable: false })
domainName!: string;
@Field(() => Date, {nullable:true})
deletedAt?: Date | string;
@Field(() => String, { nullable: false })
displayName!: string;
@Field(() => String, {nullable:false})
domainName!: string;
@Field(() => String, { nullable: true })
logo?: string;
@Field(() => String, {nullable:false})
displayName!: string;
@Field(() => WorkspaceMemberCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
workspaceMember?: WorkspaceMemberCreateNestedManyWithoutWorkspaceInput;
@Field(() => String, {nullable:true})
logo?: string;
@Field(() => CompanyCreateNestedManyWithoutWorkspaceInput, { nullable: true })
companies?: CompanyCreateNestedManyWithoutWorkspaceInput;
@Field(() => WorkspaceMemberCreateNestedManyWithoutWorkspaceInput, {nullable:true})
workspaceMember?: WorkspaceMemberCreateNestedManyWithoutWorkspaceInput;
@Field(() => PersonCreateNestedManyWithoutWorkspaceInput, { nullable: true })
people?: PersonCreateNestedManyWithoutWorkspaceInput;
@Field(() => CompanyCreateNestedManyWithoutWorkspaceInput, {nullable:true})
companies?: CompanyCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentThreadCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
commentThreads?: CommentThreadCreateNestedManyWithoutWorkspaceInput;
@Field(() => PersonCreateNestedManyWithoutWorkspaceInput, {nullable:true})
people?: PersonCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentCreateNestedManyWithoutWorkspaceInput, { nullable: true })
comments?: CommentCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentThreadCreateNestedManyWithoutWorkspaceInput, {nullable:true})
commentThreads?: CommentThreadCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineStageCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
pipelineStages?: PipelineStageCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentCreateNestedManyWithoutWorkspaceInput, {nullable:true})
comments?: CommentCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineProgressCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
pipelineProgresses?: PipelineProgressCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineStageCreateNestedManyWithoutWorkspaceInput, {nullable:true})
pipelineStages?: PipelineStageCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineProgressCreateNestedManyWithoutWorkspaceInput, {nullable:true})
pipelineProgresses?: PipelineProgressCreateNestedManyWithoutWorkspaceInput;
}

View File

@ -10,53 +10,46 @@ import { PipelineProgressCreateNestedManyWithoutWorkspaceInput } from '../pipeli
@InputType()
export class WorkspaceCreateWithoutWorkspaceMemberInput {
@Field(() => String, { nullable: true })
id?: string;
@Field(() => Date, { nullable: true })
createdAt?: Date | string;
@Field(() => String, {nullable:true})
id?: string;
@Field(() => Date, { nullable: true })
updatedAt?: Date | string;
@Field(() => Date, {nullable:true})
createdAt?: Date | string;
@Field(() => Date, { nullable: true })
deletedAt?: Date | string;
@Field(() => Date, {nullable:true})
updatedAt?: Date | string;
@Field(() => String, { nullable: false })
domainName!: string;
@Field(() => Date, {nullable:true})
deletedAt?: Date | string;
@Field(() => String, { nullable: false })
displayName!: string;
@Field(() => String, {nullable:false})
domainName!: string;
@Field(() => String, { nullable: true })
logo?: string;
@Field(() => String, {nullable:false})
displayName!: string;
@Field(() => CompanyCreateNestedManyWithoutWorkspaceInput, { nullable: true })
companies?: CompanyCreateNestedManyWithoutWorkspaceInput;
@Field(() => String, {nullable:true})
logo?: string;
@Field(() => PersonCreateNestedManyWithoutWorkspaceInput, { nullable: true })
people?: PersonCreateNestedManyWithoutWorkspaceInput;
@Field(() => CompanyCreateNestedManyWithoutWorkspaceInput, {nullable:true})
companies?: CompanyCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentThreadCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
commentThreads?: CommentThreadCreateNestedManyWithoutWorkspaceInput;
@Field(() => PersonCreateNestedManyWithoutWorkspaceInput, {nullable:true})
people?: PersonCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentCreateNestedManyWithoutWorkspaceInput, { nullable: true })
comments?: CommentCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentThreadCreateNestedManyWithoutWorkspaceInput, {nullable:true})
commentThreads?: CommentThreadCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
pipelines?: PipelineCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentCreateNestedManyWithoutWorkspaceInput, {nullable:true})
comments?: CommentCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineStageCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
pipelineStages?: PipelineStageCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineCreateNestedManyWithoutWorkspaceInput, {nullable:true})
pipelines?: PipelineCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineProgressCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
pipelineProgresses?: PipelineProgressCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineStageCreateNestedManyWithoutWorkspaceInput, {nullable:true})
pipelineStages?: PipelineStageCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineProgressCreateNestedManyWithoutWorkspaceInput, {nullable:true})
pipelineProgresses?: PipelineProgressCreateNestedManyWithoutWorkspaceInput;
}

View File

@ -11,58 +11,49 @@ import { PipelineProgressCreateNestedManyWithoutWorkspaceInput } from '../pipeli
@InputType()
export class WorkspaceCreateInput {
@Field(() => String, { nullable: true })
id?: string;
@Field(() => Date, { nullable: true })
createdAt?: Date | string;
@Field(() => String, {nullable:true})
id?: string;
@Field(() => Date, { nullable: true })
updatedAt?: Date | string;
@Field(() => Date, {nullable:true})
createdAt?: Date | string;
@Field(() => Date, { nullable: true })
deletedAt?: Date | string;
@Field(() => Date, {nullable:true})
updatedAt?: Date | string;
@Field(() => String, { nullable: false })
domainName!: string;
@Field(() => Date, {nullable:true})
deletedAt?: Date | string;
@Field(() => String, { nullable: false })
displayName!: string;
@Field(() => String, {nullable:false})
domainName!: string;
@Field(() => String, { nullable: true })
logo?: string;
@Field(() => String, {nullable:false})
displayName!: string;
@Field(() => WorkspaceMemberCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
workspaceMember?: WorkspaceMemberCreateNestedManyWithoutWorkspaceInput;
@Field(() => String, {nullable:true})
logo?: string;
@Field(() => CompanyCreateNestedManyWithoutWorkspaceInput, { nullable: true })
companies?: CompanyCreateNestedManyWithoutWorkspaceInput;
@Field(() => WorkspaceMemberCreateNestedManyWithoutWorkspaceInput, {nullable:true})
workspaceMember?: WorkspaceMemberCreateNestedManyWithoutWorkspaceInput;
@Field(() => PersonCreateNestedManyWithoutWorkspaceInput, { nullable: true })
people?: PersonCreateNestedManyWithoutWorkspaceInput;
@Field(() => CompanyCreateNestedManyWithoutWorkspaceInput, {nullable:true})
companies?: CompanyCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentThreadCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
commentThreads?: CommentThreadCreateNestedManyWithoutWorkspaceInput;
@Field(() => PersonCreateNestedManyWithoutWorkspaceInput, {nullable:true})
people?: PersonCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentCreateNestedManyWithoutWorkspaceInput, { nullable: true })
comments?: CommentCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentThreadCreateNestedManyWithoutWorkspaceInput, {nullable:true})
commentThreads?: CommentThreadCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
pipelines?: PipelineCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentCreateNestedManyWithoutWorkspaceInput, {nullable:true})
comments?: CommentCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineStageCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
pipelineStages?: PipelineStageCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineCreateNestedManyWithoutWorkspaceInput, {nullable:true})
pipelines?: PipelineCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineProgressCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
pipelineProgresses?: PipelineProgressCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineStageCreateNestedManyWithoutWorkspaceInput, {nullable:true})
pipelineStages?: PipelineStageCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineProgressCreateNestedManyWithoutWorkspaceInput, {nullable:true})
pipelineProgresses?: PipelineProgressCreateNestedManyWithoutWorkspaceInput;
}

View File

@ -12,31 +12,32 @@ import { WorkspaceMaxAggregateInput } from './workspace-max-aggregate.input';
@ArgsType()
export class WorkspaceGroupByArgs {
@Field(() => WorkspaceWhereInput, { nullable: true })
@Type(() => WorkspaceWhereInput)
where?: WorkspaceWhereInput;
@Field(() => [WorkspaceOrderByWithAggregationInput], { nullable: true })
orderBy?: Array<WorkspaceOrderByWithAggregationInput>;
@Field(() => WorkspaceWhereInput, {nullable:true})
@Type(() => WorkspaceWhereInput)
where?: WorkspaceWhereInput;
@Field(() => [WorkspaceScalarFieldEnum], { nullable: false })
by!: Array<keyof typeof WorkspaceScalarFieldEnum>;
@Field(() => [WorkspaceOrderByWithAggregationInput], {nullable:true})
orderBy?: Array<WorkspaceOrderByWithAggregationInput>;
@Field(() => WorkspaceScalarWhereWithAggregatesInput, { nullable: true })
having?: WorkspaceScalarWhereWithAggregatesInput;
@Field(() => [WorkspaceScalarFieldEnum], {nullable:false})
by!: Array<keyof typeof WorkspaceScalarFieldEnum>;
@Field(() => Int, { nullable: true })
take?: number;
@Field(() => WorkspaceScalarWhereWithAggregatesInput, {nullable:true})
having?: WorkspaceScalarWhereWithAggregatesInput;
@Field(() => Int, { nullable: true })
skip?: number;
@Field(() => Int, {nullable:true})
take?: number;
@Field(() => WorkspaceCountAggregateInput, { nullable: true })
_count?: WorkspaceCountAggregateInput;
@Field(() => Int, {nullable:true})
skip?: number;
@Field(() => WorkspaceMinAggregateInput, { nullable: true })
_min?: WorkspaceMinAggregateInput;
@Field(() => WorkspaceCountAggregateInput, {nullable:true})
_count?: WorkspaceCountAggregateInput;
@Field(() => WorkspaceMaxAggregateInput, { nullable: true })
_max?: WorkspaceMaxAggregateInput;
@Field(() => WorkspaceMinAggregateInput, {nullable:true})
_min?: WorkspaceMinAggregateInput;
@Field(() => WorkspaceMaxAggregateInput, {nullable:true})
_max?: WorkspaceMaxAggregateInput;
}

View File

@ -6,33 +6,34 @@ import { WorkspaceMaxAggregate } from './workspace-max-aggregate.output';
@ObjectType()
export class WorkspaceGroupBy {
@Field(() => String, { nullable: false })
id!: string;
@Field(() => Date, { nullable: false })
createdAt!: Date | string;
@Field(() => String, {nullable:false})
id!: string;
@Field(() => Date, { nullable: false })
updatedAt!: Date | string;
@Field(() => Date, {nullable:false})
createdAt!: Date | string;
@Field(() => Date, { nullable: true })
deletedAt?: Date | string;
@Field(() => Date, {nullable:false})
updatedAt!: Date | string;
@Field(() => String, { nullable: false })
domainName!: string;
@Field(() => Date, {nullable:true})
deletedAt?: Date | string;
@Field(() => String, { nullable: false })
displayName!: string;
@Field(() => String, {nullable:false})
domainName!: string;
@Field(() => String, { nullable: true })
logo?: string;
@Field(() => String, {nullable:false})
displayName!: string;
@Field(() => WorkspaceCountAggregate, { nullable: true })
_count?: WorkspaceCountAggregate;
@Field(() => String, {nullable:true})
logo?: string;
@Field(() => WorkspaceMinAggregate, { nullable: true })
_min?: WorkspaceMinAggregate;
@Field(() => WorkspaceCountAggregate, {nullable:true})
_count?: WorkspaceCountAggregate;
@Field(() => WorkspaceMaxAggregate, { nullable: true })
_max?: WorkspaceMaxAggregate;
@Field(() => WorkspaceMinAggregate, {nullable:true})
_min?: WorkspaceMinAggregate;
@Field(() => WorkspaceMaxAggregate, {nullable:true})
_max?: WorkspaceMaxAggregate;
}

View File

@ -3,24 +3,25 @@ import { InputType } from '@nestjs/graphql';
@InputType()
export class WorkspaceMaxAggregateInput {
@Field(() => Boolean, { nullable: true })
id?: true;
@Field(() => Boolean, { nullable: true })
createdAt?: true;
@Field(() => Boolean, {nullable:true})
id?: true;
@Field(() => Boolean, { nullable: true })
updatedAt?: true;
@Field(() => Boolean, {nullable:true})
createdAt?: true;
@Field(() => Boolean, { nullable: true })
deletedAt?: true;
@Field(() => Boolean, {nullable:true})
updatedAt?: true;
@Field(() => Boolean, { nullable: true })
domainName?: true;
@Field(() => Boolean, {nullable:true})
deletedAt?: true;
@Field(() => Boolean, { nullable: true })
displayName?: true;
@Field(() => Boolean, {nullable:true})
domainName?: true;
@Field(() => Boolean, { nullable: true })
logo?: true;
@Field(() => Boolean, {nullable:true})
displayName?: true;
@Field(() => Boolean, {nullable:true})
logo?: true;
}

View File

@ -3,24 +3,25 @@ import { ObjectType } from '@nestjs/graphql';
@ObjectType()
export class WorkspaceMaxAggregate {
@Field(() => String, { nullable: true })
id?: string;
@Field(() => Date, { nullable: true })
createdAt?: Date | string;
@Field(() => String, {nullable:true})
id?: string;
@Field(() => Date, { nullable: true })
updatedAt?: Date | string;
@Field(() => Date, {nullable:true})
createdAt?: Date | string;
@Field(() => Date, { nullable: true })
deletedAt?: Date | string;
@Field(() => Date, {nullable:true})
updatedAt?: Date | string;
@Field(() => String, { nullable: true })
domainName?: string;
@Field(() => Date, {nullable:true})
deletedAt?: Date | string;
@Field(() => String, { nullable: true })
displayName?: string;
@Field(() => String, {nullable:true})
domainName?: string;
@Field(() => String, { nullable: true })
logo?: string;
@Field(() => String, {nullable:true})
displayName?: string;
@Field(() => String, {nullable:true})
logo?: string;
}

View File

@ -4,24 +4,25 @@ import { SortOrder } from '../prisma/sort-order.enum';
@InputType()
export class WorkspaceMaxOrderByAggregateInput {
@Field(() => SortOrder, { nullable: true })
id?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
createdAt?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
id?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
updatedAt?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
createdAt?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
deletedAt?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
updatedAt?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
domainName?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
deletedAt?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
displayName?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
domainName?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
logo?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
displayName?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
logo?: keyof typeof SortOrder;
}

View File

@ -3,24 +3,25 @@ import { InputType } from '@nestjs/graphql';
@InputType()
export class WorkspaceMinAggregateInput {
@Field(() => Boolean, { nullable: true })
id?: true;
@Field(() => Boolean, { nullable: true })
createdAt?: true;
@Field(() => Boolean, {nullable:true})
id?: true;
@Field(() => Boolean, { nullable: true })
updatedAt?: true;
@Field(() => Boolean, {nullable:true})
createdAt?: true;
@Field(() => Boolean, { nullable: true })
deletedAt?: true;
@Field(() => Boolean, {nullable:true})
updatedAt?: true;
@Field(() => Boolean, { nullable: true })
domainName?: true;
@Field(() => Boolean, {nullable:true})
deletedAt?: true;
@Field(() => Boolean, { nullable: true })
displayName?: true;
@Field(() => Boolean, {nullable:true})
domainName?: true;
@Field(() => Boolean, { nullable: true })
logo?: true;
@Field(() => Boolean, {nullable:true})
displayName?: true;
@Field(() => Boolean, {nullable:true})
logo?: true;
}

View File

@ -3,24 +3,25 @@ import { ObjectType } from '@nestjs/graphql';
@ObjectType()
export class WorkspaceMinAggregate {
@Field(() => String, { nullable: true })
id?: string;
@Field(() => Date, { nullable: true })
createdAt?: Date | string;
@Field(() => String, {nullable:true})
id?: string;
@Field(() => Date, { nullable: true })
updatedAt?: Date | string;
@Field(() => Date, {nullable:true})
createdAt?: Date | string;
@Field(() => Date, { nullable: true })
deletedAt?: Date | string;
@Field(() => Date, {nullable:true})
updatedAt?: Date | string;
@Field(() => String, { nullable: true })
domainName?: string;
@Field(() => Date, {nullable:true})
deletedAt?: Date | string;
@Field(() => String, { nullable: true })
displayName?: string;
@Field(() => String, {nullable:true})
domainName?: string;
@Field(() => String, { nullable: true })
logo?: string;
@Field(() => String, {nullable:true})
displayName?: string;
@Field(() => String, {nullable:true})
logo?: string;
}

View File

@ -4,24 +4,25 @@ import { SortOrder } from '../prisma/sort-order.enum';
@InputType()
export class WorkspaceMinOrderByAggregateInput {
@Field(() => SortOrder, { nullable: true })
id?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
createdAt?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
id?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
updatedAt?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
createdAt?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
deletedAt?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
updatedAt?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
domainName?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
deletedAt?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
displayName?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
domainName?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
logo?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
displayName?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
logo?: keyof typeof SortOrder;
}

View File

@ -7,33 +7,34 @@ import { WorkspaceMinOrderByAggregateInput } from './workspace-min-order-by-aggr
@InputType()
export class WorkspaceOrderByWithAggregationInput {
@Field(() => SortOrder, { nullable: true })
id?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
createdAt?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
id?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
updatedAt?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
createdAt?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
deletedAt?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
updatedAt?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
domainName?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
deletedAt?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
displayName?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
domainName?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
logo?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
displayName?: keyof typeof SortOrder;
@Field(() => WorkspaceCountOrderByAggregateInput, { nullable: true })
_count?: WorkspaceCountOrderByAggregateInput;
@Field(() => SortOrder, {nullable:true})
logo?: keyof typeof SortOrder;
@Field(() => WorkspaceMaxOrderByAggregateInput, { nullable: true })
_max?: WorkspaceMaxOrderByAggregateInput;
@Field(() => WorkspaceCountOrderByAggregateInput, {nullable:true})
_count?: WorkspaceCountOrderByAggregateInput;
@Field(() => WorkspaceMinOrderByAggregateInput, { nullable: true })
_min?: WorkspaceMinOrderByAggregateInput;
@Field(() => WorkspaceMaxOrderByAggregateInput, {nullable:true})
_max?: WorkspaceMaxOrderByAggregateInput;
@Field(() => WorkspaceMinOrderByAggregateInput, {nullable:true})
_min?: WorkspaceMinOrderByAggregateInput;
}

View File

@ -12,50 +12,49 @@ import { PipelineProgressOrderByRelationAggregateInput } from '../pipeline-progr
@InputType()
export class WorkspaceOrderByWithRelationInput {
@Field(() => SortOrder, { nullable: true })
id?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
createdAt?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
id?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
updatedAt?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
createdAt?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
deletedAt?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
updatedAt?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
domainName?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
deletedAt?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
displayName?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
domainName?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
logo?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
displayName?: keyof typeof SortOrder;
@Field(() => WorkspaceMemberOrderByRelationAggregateInput, { nullable: true })
workspaceMember?: WorkspaceMemberOrderByRelationAggregateInput;
@Field(() => SortOrder, {nullable:true})
logo?: keyof typeof SortOrder;
@Field(() => CompanyOrderByRelationAggregateInput, { nullable: true })
companies?: CompanyOrderByRelationAggregateInput;
@Field(() => WorkspaceMemberOrderByRelationAggregateInput, {nullable:true})
workspaceMember?: WorkspaceMemberOrderByRelationAggregateInput;
@Field(() => PersonOrderByRelationAggregateInput, { nullable: true })
people?: PersonOrderByRelationAggregateInput;
@Field(() => CompanyOrderByRelationAggregateInput, {nullable:true})
companies?: CompanyOrderByRelationAggregateInput;
@Field(() => CommentThreadOrderByRelationAggregateInput, { nullable: true })
commentThreads?: CommentThreadOrderByRelationAggregateInput;
@Field(() => PersonOrderByRelationAggregateInput, {nullable:true})
people?: PersonOrderByRelationAggregateInput;
@Field(() => CommentOrderByRelationAggregateInput, { nullable: true })
comments?: CommentOrderByRelationAggregateInput;
@Field(() => CommentThreadOrderByRelationAggregateInput, {nullable:true})
commentThreads?: CommentThreadOrderByRelationAggregateInput;
@Field(() => PipelineOrderByRelationAggregateInput, { nullable: true })
pipelines?: PipelineOrderByRelationAggregateInput;
@Field(() => CommentOrderByRelationAggregateInput, {nullable:true})
comments?: CommentOrderByRelationAggregateInput;
@Field(() => PipelineStageOrderByRelationAggregateInput, { nullable: true })
pipelineStages?: PipelineStageOrderByRelationAggregateInput;
@Field(() => PipelineOrderByRelationAggregateInput, {nullable:true})
pipelines?: PipelineOrderByRelationAggregateInput;
@Field(() => PipelineProgressOrderByRelationAggregateInput, {
nullable: true,
})
pipelineProgresses?: PipelineProgressOrderByRelationAggregateInput;
@Field(() => PipelineStageOrderByRelationAggregateInput, {nullable:true})
pipelineStages?: PipelineStageOrderByRelationAggregateInput;
@Field(() => PipelineProgressOrderByRelationAggregateInput, {nullable:true})
pipelineProgresses?: PipelineProgressOrderByRelationAggregateInput;
}

View File

@ -4,9 +4,10 @@ import { WorkspaceWhereInput } from './workspace-where.input';
@InputType()
export class WorkspaceRelationFilter {
@Field(() => WorkspaceWhereInput, { nullable: true })
is?: WorkspaceWhereInput;
@Field(() => WorkspaceWhereInput, { nullable: true })
isNot?: WorkspaceWhereInput;
@Field(() => WorkspaceWhereInput, {nullable:true})
is?: WorkspaceWhereInput;
@Field(() => WorkspaceWhereInput, {nullable:true})
isNot?: WorkspaceWhereInput;
}

View File

@ -1,16 +1,14 @@
import { registerEnumType } from '@nestjs/graphql';
export enum WorkspaceScalarFieldEnum {
id = 'id',
createdAt = 'createdAt',
updatedAt = 'updatedAt',
deletedAt = 'deletedAt',
domainName = 'domainName',
displayName = 'displayName',
logo = 'logo',
id = "id",
createdAt = "createdAt",
updatedAt = "updatedAt",
deletedAt = "deletedAt",
domainName = "domainName",
displayName = "displayName",
logo = "logo"
}
registerEnumType(WorkspaceScalarFieldEnum, {
name: 'WorkspaceScalarFieldEnum',
description: undefined,
});
registerEnumType(WorkspaceScalarFieldEnum, { name: 'WorkspaceScalarFieldEnum', description: undefined })

View File

@ -7,33 +7,34 @@ import { StringNullableWithAggregatesFilter } from '../prisma/string-nullable-wi
@InputType()
export class WorkspaceScalarWhereWithAggregatesInput {
@Field(() => [WorkspaceScalarWhereWithAggregatesInput], { nullable: true })
AND?: Array<WorkspaceScalarWhereWithAggregatesInput>;
@Field(() => [WorkspaceScalarWhereWithAggregatesInput], { nullable: true })
OR?: Array<WorkspaceScalarWhereWithAggregatesInput>;
@Field(() => [WorkspaceScalarWhereWithAggregatesInput], {nullable:true})
AND?: Array<WorkspaceScalarWhereWithAggregatesInput>;
@Field(() => [WorkspaceScalarWhereWithAggregatesInput], { nullable: true })
NOT?: Array<WorkspaceScalarWhereWithAggregatesInput>;
@Field(() => [WorkspaceScalarWhereWithAggregatesInput], {nullable:true})
OR?: Array<WorkspaceScalarWhereWithAggregatesInput>;
@Field(() => StringWithAggregatesFilter, { nullable: true })
id?: StringWithAggregatesFilter;
@Field(() => [WorkspaceScalarWhereWithAggregatesInput], {nullable:true})
NOT?: Array<WorkspaceScalarWhereWithAggregatesInput>;
@Field(() => DateTimeWithAggregatesFilter, { nullable: true })
createdAt?: DateTimeWithAggregatesFilter;
@Field(() => StringWithAggregatesFilter, {nullable:true})
id?: StringWithAggregatesFilter;
@Field(() => DateTimeWithAggregatesFilter, { nullable: true })
updatedAt?: DateTimeWithAggregatesFilter;
@Field(() => DateTimeWithAggregatesFilter, {nullable:true})
createdAt?: DateTimeWithAggregatesFilter;
@Field(() => DateTimeNullableWithAggregatesFilter, { nullable: true })
deletedAt?: DateTimeNullableWithAggregatesFilter;
@Field(() => DateTimeWithAggregatesFilter, {nullable:true})
updatedAt?: DateTimeWithAggregatesFilter;
@Field(() => StringWithAggregatesFilter, { nullable: true })
domainName?: StringWithAggregatesFilter;
@Field(() => DateTimeNullableWithAggregatesFilter, {nullable:true})
deletedAt?: DateTimeNullableWithAggregatesFilter;
@Field(() => StringWithAggregatesFilter, { nullable: true })
displayName?: StringWithAggregatesFilter;
@Field(() => StringWithAggregatesFilter, {nullable:true})
domainName?: StringWithAggregatesFilter;
@Field(() => StringNullableWithAggregatesFilter, { nullable: true })
logo?: StringNullableWithAggregatesFilter;
@Field(() => StringWithAggregatesFilter, {nullable:true})
displayName?: StringWithAggregatesFilter;
@Field(() => StringNullableWithAggregatesFilter, {nullable:true})
logo?: StringNullableWithAggregatesFilter;
}

View File

@ -10,59 +10,46 @@ import { PipelineProgressUncheckedCreateNestedManyWithoutWorkspaceInput } from '
@InputType()
export class WorkspaceUncheckedCreateWithoutCommentThreadsInput {
@Field(() => String, { nullable: true })
id?: string;
@Field(() => Date, { nullable: true })
createdAt?: Date | string;
@Field(() => String, {nullable:true})
id?: string;
@Field(() => Date, { nullable: true })
updatedAt?: Date | string;
@Field(() => Date, {nullable:true})
createdAt?: Date | string;
@Field(() => Date, { nullable: true })
deletedAt?: Date | string;
@Field(() => Date, {nullable:true})
updatedAt?: Date | string;
@Field(() => String, { nullable: false })
domainName!: string;
@Field(() => Date, {nullable:true})
deletedAt?: Date | string;
@Field(() => String, { nullable: false })
displayName!: string;
@Field(() => String, {nullable:false})
domainName!: string;
@Field(() => String, { nullable: true })
logo?: string;
@Field(() => String, {nullable:false})
displayName!: string;
@Field(() => WorkspaceMemberUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
workspaceMember?: WorkspaceMemberUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => String, {nullable:true})
logo?: string;
@Field(() => CompanyUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
companies?: CompanyUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => WorkspaceMemberUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
workspaceMember?: WorkspaceMemberUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PersonUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
people?: PersonUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => CompanyUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
companies?: CompanyUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
comments?: CommentUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PersonUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
people?: PersonUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
pipelines?: PipelineUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
comments?: CommentUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineStageUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
pipelineStages?: PipelineStageUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
pipelines?: PipelineUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineProgressUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
pipelineProgresses?: PipelineProgressUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineStageUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
pipelineStages?: PipelineStageUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineProgressUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
pipelineProgresses?: PipelineProgressUncheckedCreateNestedManyWithoutWorkspaceInput;
}

View File

@ -10,59 +10,46 @@ import { PipelineProgressUncheckedCreateNestedManyWithoutWorkspaceInput } from '
@InputType()
export class WorkspaceUncheckedCreateWithoutCommentsInput {
@Field(() => String, { nullable: true })
id?: string;
@Field(() => Date, { nullable: true })
createdAt?: Date | string;
@Field(() => String, {nullable:true})
id?: string;
@Field(() => Date, { nullable: true })
updatedAt?: Date | string;
@Field(() => Date, {nullable:true})
createdAt?: Date | string;
@Field(() => Date, { nullable: true })
deletedAt?: Date | string;
@Field(() => Date, {nullable:true})
updatedAt?: Date | string;
@Field(() => String, { nullable: false })
domainName!: string;
@Field(() => Date, {nullable:true})
deletedAt?: Date | string;
@Field(() => String, { nullable: false })
displayName!: string;
@Field(() => String, {nullable:false})
domainName!: string;
@Field(() => String, { nullable: true })
logo?: string;
@Field(() => String, {nullable:false})
displayName!: string;
@Field(() => WorkspaceMemberUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
workspaceMember?: WorkspaceMemberUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => String, {nullable:true})
logo?: string;
@Field(() => CompanyUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
companies?: CompanyUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => WorkspaceMemberUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
workspaceMember?: WorkspaceMemberUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PersonUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
people?: PersonUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => CompanyUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
companies?: CompanyUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentThreadUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
commentThreads?: CommentThreadUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PersonUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
people?: PersonUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
pipelines?: PipelineUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentThreadUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
commentThreads?: CommentThreadUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineStageUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
pipelineStages?: PipelineStageUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
pipelines?: PipelineUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineProgressUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
pipelineProgresses?: PipelineProgressUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineStageUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
pipelineStages?: PipelineStageUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineProgressUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
pipelineProgresses?: PipelineProgressUncheckedCreateNestedManyWithoutWorkspaceInput;
}

View File

@ -10,59 +10,46 @@ import { PipelineProgressUncheckedCreateNestedManyWithoutWorkspaceInput } from '
@InputType()
export class WorkspaceUncheckedCreateWithoutCompaniesInput {
@Field(() => String, { nullable: true })
id?: string;
@Field(() => Date, { nullable: true })
createdAt?: Date | string;
@Field(() => String, {nullable:true})
id?: string;
@Field(() => Date, { nullable: true })
updatedAt?: Date | string;
@Field(() => Date, {nullable:true})
createdAt?: Date | string;
@Field(() => Date, { nullable: true })
deletedAt?: Date | string;
@Field(() => Date, {nullable:true})
updatedAt?: Date | string;
@Field(() => String, { nullable: false })
domainName!: string;
@Field(() => Date, {nullable:true})
deletedAt?: Date | string;
@Field(() => String, { nullable: false })
displayName!: string;
@Field(() => String, {nullable:false})
domainName!: string;
@Field(() => String, { nullable: true })
logo?: string;
@Field(() => String, {nullable:false})
displayName!: string;
@Field(() => WorkspaceMemberUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
workspaceMember?: WorkspaceMemberUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => String, {nullable:true})
logo?: string;
@Field(() => PersonUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
people?: PersonUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => WorkspaceMemberUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
workspaceMember?: WorkspaceMemberUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentThreadUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
commentThreads?: CommentThreadUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PersonUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
people?: PersonUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
comments?: CommentUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentThreadUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
commentThreads?: CommentThreadUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
pipelines?: PipelineUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
comments?: CommentUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineStageUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
pipelineStages?: PipelineStageUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
pipelines?: PipelineUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineProgressUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
pipelineProgresses?: PipelineProgressUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineStageUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
pipelineStages?: PipelineStageUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineProgressUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
pipelineProgresses?: PipelineProgressUncheckedCreateNestedManyWithoutWorkspaceInput;
}

View File

@ -10,59 +10,46 @@ import { PipelineProgressUncheckedCreateNestedManyWithoutWorkspaceInput } from '
@InputType()
export class WorkspaceUncheckedCreateWithoutPeopleInput {
@Field(() => String, { nullable: true })
id?: string;
@Field(() => Date, { nullable: true })
createdAt?: Date | string;
@Field(() => String, {nullable:true})
id?: string;
@Field(() => Date, { nullable: true })
updatedAt?: Date | string;
@Field(() => Date, {nullable:true})
createdAt?: Date | string;
@Field(() => Date, { nullable: true })
deletedAt?: Date | string;
@Field(() => Date, {nullable:true})
updatedAt?: Date | string;
@Field(() => String, { nullable: false })
domainName!: string;
@Field(() => Date, {nullable:true})
deletedAt?: Date | string;
@Field(() => String, { nullable: false })
displayName!: string;
@Field(() => String, {nullable:false})
domainName!: string;
@Field(() => String, { nullable: true })
logo?: string;
@Field(() => String, {nullable:false})
displayName!: string;
@Field(() => WorkspaceMemberUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
workspaceMember?: WorkspaceMemberUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => String, {nullable:true})
logo?: string;
@Field(() => CompanyUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
companies?: CompanyUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => WorkspaceMemberUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
workspaceMember?: WorkspaceMemberUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentThreadUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
commentThreads?: CommentThreadUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => CompanyUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
companies?: CompanyUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
comments?: CommentUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentThreadUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
commentThreads?: CommentThreadUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
pipelines?: PipelineUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
comments?: CommentUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineStageUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
pipelineStages?: PipelineStageUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
pipelines?: PipelineUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineProgressUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
pipelineProgresses?: PipelineProgressUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineStageUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
pipelineStages?: PipelineStageUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineProgressUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
pipelineProgresses?: PipelineProgressUncheckedCreateNestedManyWithoutWorkspaceInput;
}

View File

@ -10,59 +10,46 @@ import { PipelineStageUncheckedCreateNestedManyWithoutWorkspaceInput } from '../
@InputType()
export class WorkspaceUncheckedCreateWithoutPipelineProgressesInput {
@Field(() => String, { nullable: true })
id?: string;
@Field(() => Date, { nullable: true })
createdAt?: Date | string;
@Field(() => String, {nullable:true})
id?: string;
@Field(() => Date, { nullable: true })
updatedAt?: Date | string;
@Field(() => Date, {nullable:true})
createdAt?: Date | string;
@Field(() => Date, { nullable: true })
deletedAt?: Date | string;
@Field(() => Date, {nullable:true})
updatedAt?: Date | string;
@Field(() => String, { nullable: false })
domainName!: string;
@Field(() => Date, {nullable:true})
deletedAt?: Date | string;
@Field(() => String, { nullable: false })
displayName!: string;
@Field(() => String, {nullable:false})
domainName!: string;
@Field(() => String, { nullable: true })
logo?: string;
@Field(() => String, {nullable:false})
displayName!: string;
@Field(() => WorkspaceMemberUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
workspaceMember?: WorkspaceMemberUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => String, {nullable:true})
logo?: string;
@Field(() => CompanyUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
companies?: CompanyUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => WorkspaceMemberUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
workspaceMember?: WorkspaceMemberUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PersonUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
people?: PersonUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => CompanyUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
companies?: CompanyUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentThreadUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
commentThreads?: CommentThreadUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PersonUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
people?: PersonUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
comments?: CommentUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentThreadUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
commentThreads?: CommentThreadUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
pipelines?: PipelineUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
comments?: CommentUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineStageUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
pipelineStages?: PipelineStageUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
pipelines?: PipelineUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineStageUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
pipelineStages?: PipelineStageUncheckedCreateNestedManyWithoutWorkspaceInput;
}

View File

@ -10,59 +10,46 @@ import { PipelineProgressUncheckedCreateNestedManyWithoutWorkspaceInput } from '
@InputType()
export class WorkspaceUncheckedCreateWithoutPipelineStagesInput {
@Field(() => String, { nullable: true })
id?: string;
@Field(() => Date, { nullable: true })
createdAt?: Date | string;
@Field(() => String, {nullable:true})
id?: string;
@Field(() => Date, { nullable: true })
updatedAt?: Date | string;
@Field(() => Date, {nullable:true})
createdAt?: Date | string;
@Field(() => Date, { nullable: true })
deletedAt?: Date | string;
@Field(() => Date, {nullable:true})
updatedAt?: Date | string;
@Field(() => String, { nullable: false })
domainName!: string;
@Field(() => Date, {nullable:true})
deletedAt?: Date | string;
@Field(() => String, { nullable: false })
displayName!: string;
@Field(() => String, {nullable:false})
domainName!: string;
@Field(() => String, { nullable: true })
logo?: string;
@Field(() => String, {nullable:false})
displayName!: string;
@Field(() => WorkspaceMemberUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
workspaceMember?: WorkspaceMemberUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => String, {nullable:true})
logo?: string;
@Field(() => CompanyUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
companies?: CompanyUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => WorkspaceMemberUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
workspaceMember?: WorkspaceMemberUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PersonUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
people?: PersonUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => CompanyUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
companies?: CompanyUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentThreadUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
commentThreads?: CommentThreadUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PersonUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
people?: PersonUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
comments?: CommentUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentThreadUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
commentThreads?: CommentThreadUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
pipelines?: PipelineUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
comments?: CommentUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineProgressUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
pipelineProgresses?: PipelineProgressUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
pipelines?: PipelineUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineProgressUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
pipelineProgresses?: PipelineProgressUncheckedCreateNestedManyWithoutWorkspaceInput;
}

View File

@ -10,59 +10,46 @@ import { PipelineProgressUncheckedCreateNestedManyWithoutWorkspaceInput } from '
@InputType()
export class WorkspaceUncheckedCreateWithoutPipelinesInput {
@Field(() => String, { nullable: true })
id?: string;
@Field(() => Date, { nullable: true })
createdAt?: Date | string;
@Field(() => String, {nullable:true})
id?: string;
@Field(() => Date, { nullable: true })
updatedAt?: Date | string;
@Field(() => Date, {nullable:true})
createdAt?: Date | string;
@Field(() => Date, { nullable: true })
deletedAt?: Date | string;
@Field(() => Date, {nullable:true})
updatedAt?: Date | string;
@Field(() => String, { nullable: false })
domainName!: string;
@Field(() => Date, {nullable:true})
deletedAt?: Date | string;
@Field(() => String, { nullable: false })
displayName!: string;
@Field(() => String, {nullable:false})
domainName!: string;
@Field(() => String, { nullable: true })
logo?: string;
@Field(() => String, {nullable:false})
displayName!: string;
@Field(() => WorkspaceMemberUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
workspaceMember?: WorkspaceMemberUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => String, {nullable:true})
logo?: string;
@Field(() => CompanyUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
companies?: CompanyUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => WorkspaceMemberUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
workspaceMember?: WorkspaceMemberUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PersonUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
people?: PersonUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => CompanyUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
companies?: CompanyUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentThreadUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
commentThreads?: CommentThreadUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PersonUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
people?: PersonUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
comments?: CommentUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentThreadUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
commentThreads?: CommentThreadUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineStageUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
pipelineStages?: PipelineStageUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
comments?: CommentUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineProgressUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
pipelineProgresses?: PipelineProgressUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineStageUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
pipelineStages?: PipelineStageUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineProgressUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
pipelineProgresses?: PipelineProgressUncheckedCreateNestedManyWithoutWorkspaceInput;
}

View File

@ -10,59 +10,46 @@ import { PipelineProgressUncheckedCreateNestedManyWithoutWorkspaceInput } from '
@InputType()
export class WorkspaceUncheckedCreateWithoutWorkspaceMemberInput {
@Field(() => String, { nullable: true })
id?: string;
@Field(() => Date, { nullable: true })
createdAt?: Date | string;
@Field(() => String, {nullable:true})
id?: string;
@Field(() => Date, { nullable: true })
updatedAt?: Date | string;
@Field(() => Date, {nullable:true})
createdAt?: Date | string;
@Field(() => Date, { nullable: true })
deletedAt?: Date | string;
@Field(() => Date, {nullable:true})
updatedAt?: Date | string;
@Field(() => String, { nullable: false })
domainName!: string;
@Field(() => Date, {nullable:true})
deletedAt?: Date | string;
@Field(() => String, { nullable: false })
displayName!: string;
@Field(() => String, {nullable:false})
domainName!: string;
@Field(() => String, { nullable: true })
logo?: string;
@Field(() => String, {nullable:false})
displayName!: string;
@Field(() => CompanyUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
companies?: CompanyUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => String, {nullable:true})
logo?: string;
@Field(() => PersonUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
people?: PersonUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => CompanyUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
companies?: CompanyUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentThreadUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
commentThreads?: CommentThreadUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PersonUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
people?: PersonUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
comments?: CommentUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentThreadUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
commentThreads?: CommentThreadUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
pipelines?: PipelineUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
comments?: CommentUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineStageUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
pipelineStages?: PipelineStageUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
pipelines?: PipelineUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineProgressUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
pipelineProgresses?: PipelineProgressUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineStageUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
pipelineStages?: PipelineStageUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineProgressUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
pipelineProgresses?: PipelineProgressUncheckedCreateNestedManyWithoutWorkspaceInput;
}

View File

@ -11,64 +11,49 @@ import { PipelineProgressUncheckedCreateNestedManyWithoutWorkspaceInput } from '
@InputType()
export class WorkspaceUncheckedCreateInput {
@Field(() => String, { nullable: true })
id?: string;
@Field(() => Date, { nullable: true })
createdAt?: Date | string;
@Field(() => String, {nullable:true})
id?: string;
@Field(() => Date, { nullable: true })
updatedAt?: Date | string;
@Field(() => Date, {nullable:true})
createdAt?: Date | string;
@Field(() => Date, { nullable: true })
deletedAt?: Date | string;
@Field(() => Date, {nullable:true})
updatedAt?: Date | string;
@Field(() => String, { nullable: false })
domainName!: string;
@Field(() => Date, {nullable:true})
deletedAt?: Date | string;
@Field(() => String, { nullable: false })
displayName!: string;
@Field(() => String, {nullable:false})
domainName!: string;
@Field(() => String, { nullable: true })
logo?: string;
@Field(() => String, {nullable:false})
displayName!: string;
@Field(() => WorkspaceMemberUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
workspaceMember?: WorkspaceMemberUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => String, {nullable:true})
logo?: string;
@Field(() => CompanyUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
companies?: CompanyUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => WorkspaceMemberUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
workspaceMember?: WorkspaceMemberUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PersonUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
people?: PersonUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => CompanyUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
companies?: CompanyUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentThreadUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
commentThreads?: CommentThreadUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PersonUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
people?: PersonUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
comments?: CommentUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentThreadUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
commentThreads?: CommentThreadUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
pipelines?: PipelineUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => CommentUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
comments?: CommentUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineStageUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
pipelineStages?: PipelineStageUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
pipelines?: PipelineUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineProgressUncheckedCreateNestedManyWithoutWorkspaceInput, {
nullable: true,
})
pipelineProgresses?: PipelineProgressUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineStageUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
pipelineStages?: PipelineStageUncheckedCreateNestedManyWithoutWorkspaceInput;
@Field(() => PipelineProgressUncheckedCreateNestedManyWithoutWorkspaceInput, {nullable:true})
pipelineProgresses?: PipelineProgressUncheckedCreateNestedManyWithoutWorkspaceInput;
}

View File

@ -7,24 +7,25 @@ import { NullableStringFieldUpdateOperationsInput } from '../prisma/nullable-str
@InputType()
export class WorkspaceUncheckedUpdateManyInput {
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, { nullable: true })
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
domainName?: StringFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, {nullable:true})
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
displayName?: StringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
domainName?: StringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, { nullable: true })
logo?: NullableStringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
displayName?: StringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, {nullable:true})
logo?: NullableStringFieldUpdateOperationsInput;
}

View File

@ -14,59 +14,46 @@ import { PipelineProgressUncheckedUpdateManyWithoutWorkspaceNestedInput } from '
@InputType()
export class WorkspaceUncheckedUpdateWithoutCommentThreadsInput {
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, { nullable: true })
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
domainName?: StringFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, {nullable:true})
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
displayName?: StringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
domainName?: StringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, { nullable: true })
logo?: NullableStringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
displayName?: StringFieldUpdateOperationsInput;
@Field(() => WorkspaceMemberUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
workspaceMember?: WorkspaceMemberUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => NullableStringFieldUpdateOperationsInput, {nullable:true})
logo?: NullableStringFieldUpdateOperationsInput;
@Field(() => CompanyUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
companies?: CompanyUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => WorkspaceMemberUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
workspaceMember?: WorkspaceMemberUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PersonUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
people?: PersonUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CompanyUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
companies?: CompanyUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
comments?: CommentUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PersonUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
people?: PersonUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
pipelines?: PipelineUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
comments?: CommentUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineStageUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
pipelineStages?: PipelineStageUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
pipelines?: PipelineUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineProgressUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
pipelineProgresses?: PipelineProgressUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineStageUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
pipelineStages?: PipelineStageUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineProgressUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
pipelineProgresses?: PipelineProgressUncheckedUpdateManyWithoutWorkspaceNestedInput;
}

View File

@ -14,59 +14,46 @@ import { PipelineProgressUncheckedUpdateManyWithoutWorkspaceNestedInput } from '
@InputType()
export class WorkspaceUncheckedUpdateWithoutCommentsInput {
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, { nullable: true })
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
domainName?: StringFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, {nullable:true})
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
displayName?: StringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
domainName?: StringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, { nullable: true })
logo?: NullableStringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
displayName?: StringFieldUpdateOperationsInput;
@Field(() => WorkspaceMemberUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
workspaceMember?: WorkspaceMemberUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => NullableStringFieldUpdateOperationsInput, {nullable:true})
logo?: NullableStringFieldUpdateOperationsInput;
@Field(() => CompanyUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
companies?: CompanyUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => WorkspaceMemberUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
workspaceMember?: WorkspaceMemberUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PersonUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
people?: PersonUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CompanyUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
companies?: CompanyUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentThreadUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
commentThreads?: CommentThreadUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PersonUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
people?: PersonUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
pipelines?: PipelineUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentThreadUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
commentThreads?: CommentThreadUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineStageUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
pipelineStages?: PipelineStageUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
pipelines?: PipelineUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineProgressUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
pipelineProgresses?: PipelineProgressUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineStageUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
pipelineStages?: PipelineStageUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineProgressUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
pipelineProgresses?: PipelineProgressUncheckedUpdateManyWithoutWorkspaceNestedInput;
}

View File

@ -14,59 +14,46 @@ import { PipelineProgressUncheckedUpdateManyWithoutWorkspaceNestedInput } from '
@InputType()
export class WorkspaceUncheckedUpdateWithoutCompaniesInput {
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, { nullable: true })
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
domainName?: StringFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, {nullable:true})
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
displayName?: StringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
domainName?: StringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, { nullable: true })
logo?: NullableStringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
displayName?: StringFieldUpdateOperationsInput;
@Field(() => WorkspaceMemberUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
workspaceMember?: WorkspaceMemberUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => NullableStringFieldUpdateOperationsInput, {nullable:true})
logo?: NullableStringFieldUpdateOperationsInput;
@Field(() => PersonUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
people?: PersonUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => WorkspaceMemberUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
workspaceMember?: WorkspaceMemberUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentThreadUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
commentThreads?: CommentThreadUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PersonUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
people?: PersonUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
comments?: CommentUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentThreadUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
commentThreads?: CommentThreadUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
pipelines?: PipelineUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
comments?: CommentUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineStageUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
pipelineStages?: PipelineStageUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
pipelines?: PipelineUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineProgressUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
pipelineProgresses?: PipelineProgressUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineStageUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
pipelineStages?: PipelineStageUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineProgressUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
pipelineProgresses?: PipelineProgressUncheckedUpdateManyWithoutWorkspaceNestedInput;
}

View File

@ -14,59 +14,46 @@ import { PipelineProgressUncheckedUpdateManyWithoutWorkspaceNestedInput } from '
@InputType()
export class WorkspaceUncheckedUpdateWithoutPeopleInput {
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, { nullable: true })
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
domainName?: StringFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, {nullable:true})
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
displayName?: StringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
domainName?: StringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, { nullable: true })
logo?: NullableStringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
displayName?: StringFieldUpdateOperationsInput;
@Field(() => WorkspaceMemberUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
workspaceMember?: WorkspaceMemberUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => NullableStringFieldUpdateOperationsInput, {nullable:true})
logo?: NullableStringFieldUpdateOperationsInput;
@Field(() => CompanyUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
companies?: CompanyUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => WorkspaceMemberUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
workspaceMember?: WorkspaceMemberUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentThreadUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
commentThreads?: CommentThreadUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CompanyUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
companies?: CompanyUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
comments?: CommentUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentThreadUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
commentThreads?: CommentThreadUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
pipelines?: PipelineUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
comments?: CommentUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineStageUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
pipelineStages?: PipelineStageUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
pipelines?: PipelineUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineProgressUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
pipelineProgresses?: PipelineProgressUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineStageUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
pipelineStages?: PipelineStageUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineProgressUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
pipelineProgresses?: PipelineProgressUncheckedUpdateManyWithoutWorkspaceNestedInput;
}

View File

@ -14,59 +14,46 @@ import { PipelineStageUncheckedUpdateManyWithoutWorkspaceNestedInput } from '../
@InputType()
export class WorkspaceUncheckedUpdateWithoutPipelineProgressesInput {
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, { nullable: true })
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
domainName?: StringFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, {nullable:true})
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
displayName?: StringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
domainName?: StringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, { nullable: true })
logo?: NullableStringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
displayName?: StringFieldUpdateOperationsInput;
@Field(() => WorkspaceMemberUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
workspaceMember?: WorkspaceMemberUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => NullableStringFieldUpdateOperationsInput, {nullable:true})
logo?: NullableStringFieldUpdateOperationsInput;
@Field(() => CompanyUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
companies?: CompanyUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => WorkspaceMemberUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
workspaceMember?: WorkspaceMemberUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PersonUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
people?: PersonUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CompanyUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
companies?: CompanyUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentThreadUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
commentThreads?: CommentThreadUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PersonUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
people?: PersonUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
comments?: CommentUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentThreadUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
commentThreads?: CommentThreadUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
pipelines?: PipelineUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
comments?: CommentUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineStageUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
pipelineStages?: PipelineStageUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
pipelines?: PipelineUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineStageUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
pipelineStages?: PipelineStageUncheckedUpdateManyWithoutWorkspaceNestedInput;
}

View File

@ -14,59 +14,46 @@ import { PipelineProgressUncheckedUpdateManyWithoutWorkspaceNestedInput } from '
@InputType()
export class WorkspaceUncheckedUpdateWithoutPipelineStagesInput {
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, { nullable: true })
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
domainName?: StringFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, {nullable:true})
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
displayName?: StringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
domainName?: StringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, { nullable: true })
logo?: NullableStringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
displayName?: StringFieldUpdateOperationsInput;
@Field(() => WorkspaceMemberUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
workspaceMember?: WorkspaceMemberUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => NullableStringFieldUpdateOperationsInput, {nullable:true})
logo?: NullableStringFieldUpdateOperationsInput;
@Field(() => CompanyUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
companies?: CompanyUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => WorkspaceMemberUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
workspaceMember?: WorkspaceMemberUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PersonUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
people?: PersonUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CompanyUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
companies?: CompanyUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentThreadUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
commentThreads?: CommentThreadUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PersonUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
people?: PersonUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
comments?: CommentUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentThreadUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
commentThreads?: CommentThreadUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
pipelines?: PipelineUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
comments?: CommentUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineProgressUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
pipelineProgresses?: PipelineProgressUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
pipelines?: PipelineUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineProgressUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
pipelineProgresses?: PipelineProgressUncheckedUpdateManyWithoutWorkspaceNestedInput;
}

View File

@ -14,59 +14,46 @@ import { PipelineProgressUncheckedUpdateManyWithoutWorkspaceNestedInput } from '
@InputType()
export class WorkspaceUncheckedUpdateWithoutPipelinesInput {
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, { nullable: true })
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
domainName?: StringFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, {nullable:true})
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
displayName?: StringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
domainName?: StringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, { nullable: true })
logo?: NullableStringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
displayName?: StringFieldUpdateOperationsInput;
@Field(() => WorkspaceMemberUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
workspaceMember?: WorkspaceMemberUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => NullableStringFieldUpdateOperationsInput, {nullable:true})
logo?: NullableStringFieldUpdateOperationsInput;
@Field(() => CompanyUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
companies?: CompanyUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => WorkspaceMemberUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
workspaceMember?: WorkspaceMemberUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PersonUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
people?: PersonUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CompanyUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
companies?: CompanyUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentThreadUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
commentThreads?: CommentThreadUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PersonUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
people?: PersonUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
comments?: CommentUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentThreadUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
commentThreads?: CommentThreadUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineStageUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
pipelineStages?: PipelineStageUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
comments?: CommentUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineProgressUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
pipelineProgresses?: PipelineProgressUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineStageUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
pipelineStages?: PipelineStageUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineProgressUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
pipelineProgresses?: PipelineProgressUncheckedUpdateManyWithoutWorkspaceNestedInput;
}

View File

@ -14,59 +14,46 @@ import { PipelineProgressUncheckedUpdateManyWithoutWorkspaceNestedInput } from '
@InputType()
export class WorkspaceUncheckedUpdateWithoutWorkspaceMemberInput {
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, { nullable: true })
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
domainName?: StringFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, {nullable:true})
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
displayName?: StringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
domainName?: StringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, { nullable: true })
logo?: NullableStringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
displayName?: StringFieldUpdateOperationsInput;
@Field(() => CompanyUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
companies?: CompanyUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => NullableStringFieldUpdateOperationsInput, {nullable:true})
logo?: NullableStringFieldUpdateOperationsInput;
@Field(() => PersonUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
people?: PersonUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CompanyUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
companies?: CompanyUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentThreadUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
commentThreads?: CommentThreadUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PersonUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
people?: PersonUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
comments?: CommentUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentThreadUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
commentThreads?: CommentThreadUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
pipelines?: PipelineUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
comments?: CommentUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineStageUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
pipelineStages?: PipelineStageUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
pipelines?: PipelineUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineProgressUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
pipelineProgresses?: PipelineProgressUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineStageUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
pipelineStages?: PipelineStageUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineProgressUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
pipelineProgresses?: PipelineProgressUncheckedUpdateManyWithoutWorkspaceNestedInput;
}

View File

@ -15,64 +15,49 @@ import { PipelineProgressUncheckedUpdateManyWithoutWorkspaceNestedInput } from '
@InputType()
export class WorkspaceUncheckedUpdateInput {
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, { nullable: true })
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
domainName?: StringFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, {nullable:true})
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
displayName?: StringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
domainName?: StringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, { nullable: true })
logo?: NullableStringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
displayName?: StringFieldUpdateOperationsInput;
@Field(() => WorkspaceMemberUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
workspaceMember?: WorkspaceMemberUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => NullableStringFieldUpdateOperationsInput, {nullable:true})
logo?: NullableStringFieldUpdateOperationsInput;
@Field(() => CompanyUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
companies?: CompanyUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => WorkspaceMemberUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
workspaceMember?: WorkspaceMemberUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PersonUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
people?: PersonUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CompanyUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
companies?: CompanyUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentThreadUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
commentThreads?: CommentThreadUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PersonUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
people?: PersonUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
comments?: CommentUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentThreadUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
commentThreads?: CommentThreadUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
pipelines?: PipelineUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
comments?: CommentUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineStageUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
pipelineStages?: PipelineStageUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
pipelines?: PipelineUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineProgressUncheckedUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
pipelineProgresses?: PipelineProgressUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineStageUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
pipelineStages?: PipelineStageUncheckedUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineProgressUncheckedUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
pipelineProgresses?: PipelineProgressUncheckedUpdateManyWithoutWorkspaceNestedInput;
}

View File

@ -7,24 +7,25 @@ import { NullableStringFieldUpdateOperationsInput } from '../prisma/nullable-str
@InputType()
export class WorkspaceUpdateManyMutationInput {
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, { nullable: true })
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
domainName?: StringFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, {nullable:true})
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
displayName?: StringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
domainName?: StringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, { nullable: true })
logo?: NullableStringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
displayName?: StringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, {nullable:true})
logo?: NullableStringFieldUpdateOperationsInput;
}

View File

@ -9,25 +9,24 @@ import { WorkspaceUpdateWithoutCommentThreadsInput } from './workspace-update-wi
@InputType()
export class WorkspaceUpdateOneRequiredWithoutCommentThreadsNestedInput {
@Field(() => WorkspaceCreateWithoutCommentThreadsInput, { nullable: true })
@Type(() => WorkspaceCreateWithoutCommentThreadsInput)
create?: WorkspaceCreateWithoutCommentThreadsInput;
@Field(() => WorkspaceCreateOrConnectWithoutCommentThreadsInput, {
nullable: true,
})
@Type(() => WorkspaceCreateOrConnectWithoutCommentThreadsInput)
connectOrCreate?: WorkspaceCreateOrConnectWithoutCommentThreadsInput;
@Field(() => WorkspaceCreateWithoutCommentThreadsInput, {nullable:true})
@Type(() => WorkspaceCreateWithoutCommentThreadsInput)
create?: WorkspaceCreateWithoutCommentThreadsInput;
@Field(() => WorkspaceUpsertWithoutCommentThreadsInput, { nullable: true })
@Type(() => WorkspaceUpsertWithoutCommentThreadsInput)
upsert?: WorkspaceUpsertWithoutCommentThreadsInput;
@Field(() => WorkspaceCreateOrConnectWithoutCommentThreadsInput, {nullable:true})
@Type(() => WorkspaceCreateOrConnectWithoutCommentThreadsInput)
connectOrCreate?: WorkspaceCreateOrConnectWithoutCommentThreadsInput;
@Field(() => WorkspaceWhereUniqueInput, { nullable: true })
@Type(() => WorkspaceWhereUniqueInput)
connect?: WorkspaceWhereUniqueInput;
@Field(() => WorkspaceUpsertWithoutCommentThreadsInput, {nullable:true})
@Type(() => WorkspaceUpsertWithoutCommentThreadsInput)
upsert?: WorkspaceUpsertWithoutCommentThreadsInput;
@Field(() => WorkspaceUpdateWithoutCommentThreadsInput, { nullable: true })
@Type(() => WorkspaceUpdateWithoutCommentThreadsInput)
update?: WorkspaceUpdateWithoutCommentThreadsInput;
@Field(() => WorkspaceWhereUniqueInput, {nullable:true})
@Type(() => WorkspaceWhereUniqueInput)
connect?: WorkspaceWhereUniqueInput;
@Field(() => WorkspaceUpdateWithoutCommentThreadsInput, {nullable:true})
@Type(() => WorkspaceUpdateWithoutCommentThreadsInput)
update?: WorkspaceUpdateWithoutCommentThreadsInput;
}

View File

@ -9,23 +9,24 @@ import { WorkspaceUpdateWithoutCommentsInput } from './workspace-update-without-
@InputType()
export class WorkspaceUpdateOneRequiredWithoutCommentsNestedInput {
@Field(() => WorkspaceCreateWithoutCommentsInput, { nullable: true })
@Type(() => WorkspaceCreateWithoutCommentsInput)
create?: WorkspaceCreateWithoutCommentsInput;
@Field(() => WorkspaceCreateOrConnectWithoutCommentsInput, { nullable: true })
@Type(() => WorkspaceCreateOrConnectWithoutCommentsInput)
connectOrCreate?: WorkspaceCreateOrConnectWithoutCommentsInput;
@Field(() => WorkspaceCreateWithoutCommentsInput, {nullable:true})
@Type(() => WorkspaceCreateWithoutCommentsInput)
create?: WorkspaceCreateWithoutCommentsInput;
@Field(() => WorkspaceUpsertWithoutCommentsInput, { nullable: true })
@Type(() => WorkspaceUpsertWithoutCommentsInput)
upsert?: WorkspaceUpsertWithoutCommentsInput;
@Field(() => WorkspaceCreateOrConnectWithoutCommentsInput, {nullable:true})
@Type(() => WorkspaceCreateOrConnectWithoutCommentsInput)
connectOrCreate?: WorkspaceCreateOrConnectWithoutCommentsInput;
@Field(() => WorkspaceWhereUniqueInput, { nullable: true })
@Type(() => WorkspaceWhereUniqueInput)
connect?: WorkspaceWhereUniqueInput;
@Field(() => WorkspaceUpsertWithoutCommentsInput, {nullable:true})
@Type(() => WorkspaceUpsertWithoutCommentsInput)
upsert?: WorkspaceUpsertWithoutCommentsInput;
@Field(() => WorkspaceUpdateWithoutCommentsInput, { nullable: true })
@Type(() => WorkspaceUpdateWithoutCommentsInput)
update?: WorkspaceUpdateWithoutCommentsInput;
@Field(() => WorkspaceWhereUniqueInput, {nullable:true})
@Type(() => WorkspaceWhereUniqueInput)
connect?: WorkspaceWhereUniqueInput;
@Field(() => WorkspaceUpdateWithoutCommentsInput, {nullable:true})
@Type(() => WorkspaceUpdateWithoutCommentsInput)
update?: WorkspaceUpdateWithoutCommentsInput;
}

View File

@ -9,25 +9,24 @@ import { WorkspaceUpdateWithoutCompaniesInput } from './workspace-update-without
@InputType()
export class WorkspaceUpdateOneRequiredWithoutCompaniesNestedInput {
@Field(() => WorkspaceCreateWithoutCompaniesInput, { nullable: true })
@Type(() => WorkspaceCreateWithoutCompaniesInput)
create?: WorkspaceCreateWithoutCompaniesInput;
@Field(() => WorkspaceCreateOrConnectWithoutCompaniesInput, {
nullable: true,
})
@Type(() => WorkspaceCreateOrConnectWithoutCompaniesInput)
connectOrCreate?: WorkspaceCreateOrConnectWithoutCompaniesInput;
@Field(() => WorkspaceCreateWithoutCompaniesInput, {nullable:true})
@Type(() => WorkspaceCreateWithoutCompaniesInput)
create?: WorkspaceCreateWithoutCompaniesInput;
@Field(() => WorkspaceUpsertWithoutCompaniesInput, { nullable: true })
@Type(() => WorkspaceUpsertWithoutCompaniesInput)
upsert?: WorkspaceUpsertWithoutCompaniesInput;
@Field(() => WorkspaceCreateOrConnectWithoutCompaniesInput, {nullable:true})
@Type(() => WorkspaceCreateOrConnectWithoutCompaniesInput)
connectOrCreate?: WorkspaceCreateOrConnectWithoutCompaniesInput;
@Field(() => WorkspaceWhereUniqueInput, { nullable: true })
@Type(() => WorkspaceWhereUniqueInput)
connect?: WorkspaceWhereUniqueInput;
@Field(() => WorkspaceUpsertWithoutCompaniesInput, {nullable:true})
@Type(() => WorkspaceUpsertWithoutCompaniesInput)
upsert?: WorkspaceUpsertWithoutCompaniesInput;
@Field(() => WorkspaceUpdateWithoutCompaniesInput, { nullable: true })
@Type(() => WorkspaceUpdateWithoutCompaniesInput)
update?: WorkspaceUpdateWithoutCompaniesInput;
@Field(() => WorkspaceWhereUniqueInput, {nullable:true})
@Type(() => WorkspaceWhereUniqueInput)
connect?: WorkspaceWhereUniqueInput;
@Field(() => WorkspaceUpdateWithoutCompaniesInput, {nullable:true})
@Type(() => WorkspaceUpdateWithoutCompaniesInput)
update?: WorkspaceUpdateWithoutCompaniesInput;
}

View File

@ -9,23 +9,24 @@ import { WorkspaceUpdateWithoutPeopleInput } from './workspace-update-without-pe
@InputType()
export class WorkspaceUpdateOneRequiredWithoutPeopleNestedInput {
@Field(() => WorkspaceCreateWithoutPeopleInput, { nullable: true })
@Type(() => WorkspaceCreateWithoutPeopleInput)
create?: WorkspaceCreateWithoutPeopleInput;
@Field(() => WorkspaceCreateOrConnectWithoutPeopleInput, { nullable: true })
@Type(() => WorkspaceCreateOrConnectWithoutPeopleInput)
connectOrCreate?: WorkspaceCreateOrConnectWithoutPeopleInput;
@Field(() => WorkspaceCreateWithoutPeopleInput, {nullable:true})
@Type(() => WorkspaceCreateWithoutPeopleInput)
create?: WorkspaceCreateWithoutPeopleInput;
@Field(() => WorkspaceUpsertWithoutPeopleInput, { nullable: true })
@Type(() => WorkspaceUpsertWithoutPeopleInput)
upsert?: WorkspaceUpsertWithoutPeopleInput;
@Field(() => WorkspaceCreateOrConnectWithoutPeopleInput, {nullable:true})
@Type(() => WorkspaceCreateOrConnectWithoutPeopleInput)
connectOrCreate?: WorkspaceCreateOrConnectWithoutPeopleInput;
@Field(() => WorkspaceWhereUniqueInput, { nullable: true })
@Type(() => WorkspaceWhereUniqueInput)
connect?: WorkspaceWhereUniqueInput;
@Field(() => WorkspaceUpsertWithoutPeopleInput, {nullable:true})
@Type(() => WorkspaceUpsertWithoutPeopleInput)
upsert?: WorkspaceUpsertWithoutPeopleInput;
@Field(() => WorkspaceUpdateWithoutPeopleInput, { nullable: true })
@Type(() => WorkspaceUpdateWithoutPeopleInput)
update?: WorkspaceUpdateWithoutPeopleInput;
@Field(() => WorkspaceWhereUniqueInput, {nullable:true})
@Type(() => WorkspaceWhereUniqueInput)
connect?: WorkspaceWhereUniqueInput;
@Field(() => WorkspaceUpdateWithoutPeopleInput, {nullable:true})
@Type(() => WorkspaceUpdateWithoutPeopleInput)
update?: WorkspaceUpdateWithoutPeopleInput;
}

View File

@ -9,31 +9,24 @@ import { WorkspaceUpdateWithoutPipelineProgressesInput } from './workspace-updat
@InputType()
export class WorkspaceUpdateOneRequiredWithoutPipelineProgressesNestedInput {
@Field(() => WorkspaceCreateWithoutPipelineProgressesInput, {
nullable: true,
})
@Type(() => WorkspaceCreateWithoutPipelineProgressesInput)
create?: WorkspaceCreateWithoutPipelineProgressesInput;
@Field(() => WorkspaceCreateOrConnectWithoutPipelineProgressesInput, {
nullable: true,
})
@Type(() => WorkspaceCreateOrConnectWithoutPipelineProgressesInput)
connectOrCreate?: WorkspaceCreateOrConnectWithoutPipelineProgressesInput;
@Field(() => WorkspaceCreateWithoutPipelineProgressesInput, {nullable:true})
@Type(() => WorkspaceCreateWithoutPipelineProgressesInput)
create?: WorkspaceCreateWithoutPipelineProgressesInput;
@Field(() => WorkspaceUpsertWithoutPipelineProgressesInput, {
nullable: true,
})
@Type(() => WorkspaceUpsertWithoutPipelineProgressesInput)
upsert?: WorkspaceUpsertWithoutPipelineProgressesInput;
@Field(() => WorkspaceCreateOrConnectWithoutPipelineProgressesInput, {nullable:true})
@Type(() => WorkspaceCreateOrConnectWithoutPipelineProgressesInput)
connectOrCreate?: WorkspaceCreateOrConnectWithoutPipelineProgressesInput;
@Field(() => WorkspaceWhereUniqueInput, { nullable: true })
@Type(() => WorkspaceWhereUniqueInput)
connect?: WorkspaceWhereUniqueInput;
@Field(() => WorkspaceUpsertWithoutPipelineProgressesInput, {nullable:true})
@Type(() => WorkspaceUpsertWithoutPipelineProgressesInput)
upsert?: WorkspaceUpsertWithoutPipelineProgressesInput;
@Field(() => WorkspaceUpdateWithoutPipelineProgressesInput, {
nullable: true,
})
@Type(() => WorkspaceUpdateWithoutPipelineProgressesInput)
update?: WorkspaceUpdateWithoutPipelineProgressesInput;
@Field(() => WorkspaceWhereUniqueInput, {nullable:true})
@Type(() => WorkspaceWhereUniqueInput)
connect?: WorkspaceWhereUniqueInput;
@Field(() => WorkspaceUpdateWithoutPipelineProgressesInput, {nullable:true})
@Type(() => WorkspaceUpdateWithoutPipelineProgressesInput)
update?: WorkspaceUpdateWithoutPipelineProgressesInput;
}

View File

@ -9,25 +9,24 @@ import { WorkspaceUpdateWithoutPipelineStagesInput } from './workspace-update-wi
@InputType()
export class WorkspaceUpdateOneRequiredWithoutPipelineStagesNestedInput {
@Field(() => WorkspaceCreateWithoutPipelineStagesInput, { nullable: true })
@Type(() => WorkspaceCreateWithoutPipelineStagesInput)
create?: WorkspaceCreateWithoutPipelineStagesInput;
@Field(() => WorkspaceCreateOrConnectWithoutPipelineStagesInput, {
nullable: true,
})
@Type(() => WorkspaceCreateOrConnectWithoutPipelineStagesInput)
connectOrCreate?: WorkspaceCreateOrConnectWithoutPipelineStagesInput;
@Field(() => WorkspaceCreateWithoutPipelineStagesInput, {nullable:true})
@Type(() => WorkspaceCreateWithoutPipelineStagesInput)
create?: WorkspaceCreateWithoutPipelineStagesInput;
@Field(() => WorkspaceUpsertWithoutPipelineStagesInput, { nullable: true })
@Type(() => WorkspaceUpsertWithoutPipelineStagesInput)
upsert?: WorkspaceUpsertWithoutPipelineStagesInput;
@Field(() => WorkspaceCreateOrConnectWithoutPipelineStagesInput, {nullable:true})
@Type(() => WorkspaceCreateOrConnectWithoutPipelineStagesInput)
connectOrCreate?: WorkspaceCreateOrConnectWithoutPipelineStagesInput;
@Field(() => WorkspaceWhereUniqueInput, { nullable: true })
@Type(() => WorkspaceWhereUniqueInput)
connect?: WorkspaceWhereUniqueInput;
@Field(() => WorkspaceUpsertWithoutPipelineStagesInput, {nullable:true})
@Type(() => WorkspaceUpsertWithoutPipelineStagesInput)
upsert?: WorkspaceUpsertWithoutPipelineStagesInput;
@Field(() => WorkspaceUpdateWithoutPipelineStagesInput, { nullable: true })
@Type(() => WorkspaceUpdateWithoutPipelineStagesInput)
update?: WorkspaceUpdateWithoutPipelineStagesInput;
@Field(() => WorkspaceWhereUniqueInput, {nullable:true})
@Type(() => WorkspaceWhereUniqueInput)
connect?: WorkspaceWhereUniqueInput;
@Field(() => WorkspaceUpdateWithoutPipelineStagesInput, {nullable:true})
@Type(() => WorkspaceUpdateWithoutPipelineStagesInput)
update?: WorkspaceUpdateWithoutPipelineStagesInput;
}

View File

@ -9,25 +9,24 @@ import { WorkspaceUpdateWithoutPipelinesInput } from './workspace-update-without
@InputType()
export class WorkspaceUpdateOneRequiredWithoutPipelinesNestedInput {
@Field(() => WorkspaceCreateWithoutPipelinesInput, { nullable: true })
@Type(() => WorkspaceCreateWithoutPipelinesInput)
create?: WorkspaceCreateWithoutPipelinesInput;
@Field(() => WorkspaceCreateOrConnectWithoutPipelinesInput, {
nullable: true,
})
@Type(() => WorkspaceCreateOrConnectWithoutPipelinesInput)
connectOrCreate?: WorkspaceCreateOrConnectWithoutPipelinesInput;
@Field(() => WorkspaceCreateWithoutPipelinesInput, {nullable:true})
@Type(() => WorkspaceCreateWithoutPipelinesInput)
create?: WorkspaceCreateWithoutPipelinesInput;
@Field(() => WorkspaceUpsertWithoutPipelinesInput, { nullable: true })
@Type(() => WorkspaceUpsertWithoutPipelinesInput)
upsert?: WorkspaceUpsertWithoutPipelinesInput;
@Field(() => WorkspaceCreateOrConnectWithoutPipelinesInput, {nullable:true})
@Type(() => WorkspaceCreateOrConnectWithoutPipelinesInput)
connectOrCreate?: WorkspaceCreateOrConnectWithoutPipelinesInput;
@Field(() => WorkspaceWhereUniqueInput, { nullable: true })
@Type(() => WorkspaceWhereUniqueInput)
connect?: WorkspaceWhereUniqueInput;
@Field(() => WorkspaceUpsertWithoutPipelinesInput, {nullable:true})
@Type(() => WorkspaceUpsertWithoutPipelinesInput)
upsert?: WorkspaceUpsertWithoutPipelinesInput;
@Field(() => WorkspaceUpdateWithoutPipelinesInput, { nullable: true })
@Type(() => WorkspaceUpdateWithoutPipelinesInput)
update?: WorkspaceUpdateWithoutPipelinesInput;
@Field(() => WorkspaceWhereUniqueInput, {nullable:true})
@Type(() => WorkspaceWhereUniqueInput)
connect?: WorkspaceWhereUniqueInput;
@Field(() => WorkspaceUpdateWithoutPipelinesInput, {nullable:true})
@Type(() => WorkspaceUpdateWithoutPipelinesInput)
update?: WorkspaceUpdateWithoutPipelinesInput;
}

View File

@ -9,25 +9,24 @@ import { WorkspaceUpdateWithoutWorkspaceMemberInput } from './workspace-update-w
@InputType()
export class WorkspaceUpdateOneRequiredWithoutWorkspaceMemberNestedInput {
@Field(() => WorkspaceCreateWithoutWorkspaceMemberInput, { nullable: true })
@Type(() => WorkspaceCreateWithoutWorkspaceMemberInput)
create?: WorkspaceCreateWithoutWorkspaceMemberInput;
@Field(() => WorkspaceCreateOrConnectWithoutWorkspaceMemberInput, {
nullable: true,
})
@Type(() => WorkspaceCreateOrConnectWithoutWorkspaceMemberInput)
connectOrCreate?: WorkspaceCreateOrConnectWithoutWorkspaceMemberInput;
@Field(() => WorkspaceCreateWithoutWorkspaceMemberInput, {nullable:true})
@Type(() => WorkspaceCreateWithoutWorkspaceMemberInput)
create?: WorkspaceCreateWithoutWorkspaceMemberInput;
@Field(() => WorkspaceUpsertWithoutWorkspaceMemberInput, { nullable: true })
@Type(() => WorkspaceUpsertWithoutWorkspaceMemberInput)
upsert?: WorkspaceUpsertWithoutWorkspaceMemberInput;
@Field(() => WorkspaceCreateOrConnectWithoutWorkspaceMemberInput, {nullable:true})
@Type(() => WorkspaceCreateOrConnectWithoutWorkspaceMemberInput)
connectOrCreate?: WorkspaceCreateOrConnectWithoutWorkspaceMemberInput;
@Field(() => WorkspaceWhereUniqueInput, { nullable: true })
@Type(() => WorkspaceWhereUniqueInput)
connect?: WorkspaceWhereUniqueInput;
@Field(() => WorkspaceUpsertWithoutWorkspaceMemberInput, {nullable:true})
@Type(() => WorkspaceUpsertWithoutWorkspaceMemberInput)
upsert?: WorkspaceUpsertWithoutWorkspaceMemberInput;
@Field(() => WorkspaceUpdateWithoutWorkspaceMemberInput, { nullable: true })
@Type(() => WorkspaceUpdateWithoutWorkspaceMemberInput)
update?: WorkspaceUpdateWithoutWorkspaceMemberInput;
@Field(() => WorkspaceWhereUniqueInput, {nullable:true})
@Type(() => WorkspaceWhereUniqueInput)
connect?: WorkspaceWhereUniqueInput;
@Field(() => WorkspaceUpdateWithoutWorkspaceMemberInput, {nullable:true})
@Type(() => WorkspaceUpdateWithoutWorkspaceMemberInput)
update?: WorkspaceUpdateWithoutWorkspaceMemberInput;
}

View File

@ -14,53 +14,46 @@ import { PipelineProgressUpdateManyWithoutWorkspaceNestedInput } from '../pipeli
@InputType()
export class WorkspaceUpdateWithoutCommentThreadsInput {
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, { nullable: true })
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
domainName?: StringFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, {nullable:true})
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
displayName?: StringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
domainName?: StringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, { nullable: true })
logo?: NullableStringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
displayName?: StringFieldUpdateOperationsInput;
@Field(() => WorkspaceMemberUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
workspaceMember?: WorkspaceMemberUpdateManyWithoutWorkspaceNestedInput;
@Field(() => NullableStringFieldUpdateOperationsInput, {nullable:true})
logo?: NullableStringFieldUpdateOperationsInput;
@Field(() => CompanyUpdateManyWithoutWorkspaceNestedInput, { nullable: true })
companies?: CompanyUpdateManyWithoutWorkspaceNestedInput;
@Field(() => WorkspaceMemberUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
workspaceMember?: WorkspaceMemberUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PersonUpdateManyWithoutWorkspaceNestedInput, { nullable: true })
people?: PersonUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CompanyUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
companies?: CompanyUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentUpdateManyWithoutWorkspaceNestedInput, { nullable: true })
comments?: CommentUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PersonUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
people?: PersonUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
pipelines?: PipelineUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
comments?: CommentUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineStageUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
pipelineStages?: PipelineStageUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
pipelines?: PipelineUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineProgressUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
pipelineProgresses?: PipelineProgressUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineStageUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
pipelineStages?: PipelineStageUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineProgressUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
pipelineProgresses?: PipelineProgressUpdateManyWithoutWorkspaceNestedInput;
}

View File

@ -14,55 +14,46 @@ import { PipelineProgressUpdateManyWithoutWorkspaceNestedInput } from '../pipeli
@InputType()
export class WorkspaceUpdateWithoutCommentsInput {
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, { nullable: true })
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
domainName?: StringFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, {nullable:true})
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
displayName?: StringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
domainName?: StringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, { nullable: true })
logo?: NullableStringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
displayName?: StringFieldUpdateOperationsInput;
@Field(() => WorkspaceMemberUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
workspaceMember?: WorkspaceMemberUpdateManyWithoutWorkspaceNestedInput;
@Field(() => NullableStringFieldUpdateOperationsInput, {nullable:true})
logo?: NullableStringFieldUpdateOperationsInput;
@Field(() => CompanyUpdateManyWithoutWorkspaceNestedInput, { nullable: true })
companies?: CompanyUpdateManyWithoutWorkspaceNestedInput;
@Field(() => WorkspaceMemberUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
workspaceMember?: WorkspaceMemberUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PersonUpdateManyWithoutWorkspaceNestedInput, { nullable: true })
people?: PersonUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CompanyUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
companies?: CompanyUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentThreadUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
commentThreads?: CommentThreadUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PersonUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
people?: PersonUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
pipelines?: PipelineUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentThreadUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
commentThreads?: CommentThreadUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineStageUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
pipelineStages?: PipelineStageUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
pipelines?: PipelineUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineProgressUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
pipelineProgresses?: PipelineProgressUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineStageUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
pipelineStages?: PipelineStageUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineProgressUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
pipelineProgresses?: PipelineProgressUpdateManyWithoutWorkspaceNestedInput;
}

View File

@ -14,55 +14,46 @@ import { PipelineProgressUpdateManyWithoutWorkspaceNestedInput } from '../pipeli
@InputType()
export class WorkspaceUpdateWithoutCompaniesInput {
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, { nullable: true })
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
domainName?: StringFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, {nullable:true})
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
displayName?: StringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
domainName?: StringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, { nullable: true })
logo?: NullableStringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
displayName?: StringFieldUpdateOperationsInput;
@Field(() => WorkspaceMemberUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
workspaceMember?: WorkspaceMemberUpdateManyWithoutWorkspaceNestedInput;
@Field(() => NullableStringFieldUpdateOperationsInput, {nullable:true})
logo?: NullableStringFieldUpdateOperationsInput;
@Field(() => PersonUpdateManyWithoutWorkspaceNestedInput, { nullable: true })
people?: PersonUpdateManyWithoutWorkspaceNestedInput;
@Field(() => WorkspaceMemberUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
workspaceMember?: WorkspaceMemberUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentThreadUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
commentThreads?: CommentThreadUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PersonUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
people?: PersonUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentUpdateManyWithoutWorkspaceNestedInput, { nullable: true })
comments?: CommentUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentThreadUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
commentThreads?: CommentThreadUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
pipelines?: PipelineUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
comments?: CommentUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineStageUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
pipelineStages?: PipelineStageUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
pipelines?: PipelineUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineProgressUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
pipelineProgresses?: PipelineProgressUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineStageUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
pipelineStages?: PipelineStageUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineProgressUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
pipelineProgresses?: PipelineProgressUpdateManyWithoutWorkspaceNestedInput;
}

View File

@ -14,55 +14,46 @@ import { PipelineProgressUpdateManyWithoutWorkspaceNestedInput } from '../pipeli
@InputType()
export class WorkspaceUpdateWithoutPeopleInput {
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, { nullable: true })
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
domainName?: StringFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, {nullable:true})
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
displayName?: StringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
domainName?: StringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, { nullable: true })
logo?: NullableStringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
displayName?: StringFieldUpdateOperationsInput;
@Field(() => WorkspaceMemberUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
workspaceMember?: WorkspaceMemberUpdateManyWithoutWorkspaceNestedInput;
@Field(() => NullableStringFieldUpdateOperationsInput, {nullable:true})
logo?: NullableStringFieldUpdateOperationsInput;
@Field(() => CompanyUpdateManyWithoutWorkspaceNestedInput, { nullable: true })
companies?: CompanyUpdateManyWithoutWorkspaceNestedInput;
@Field(() => WorkspaceMemberUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
workspaceMember?: WorkspaceMemberUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentThreadUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
commentThreads?: CommentThreadUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CompanyUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
companies?: CompanyUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentUpdateManyWithoutWorkspaceNestedInput, { nullable: true })
comments?: CommentUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentThreadUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
commentThreads?: CommentThreadUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
pipelines?: PipelineUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
comments?: CommentUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineStageUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
pipelineStages?: PipelineStageUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
pipelines?: PipelineUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineProgressUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
pipelineProgresses?: PipelineProgressUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineStageUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
pipelineStages?: PipelineStageUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineProgressUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
pipelineProgresses?: PipelineProgressUpdateManyWithoutWorkspaceNestedInput;
}

View File

@ -14,53 +14,46 @@ import { PipelineStageUpdateManyWithoutWorkspaceNestedInput } from '../pipeline-
@InputType()
export class WorkspaceUpdateWithoutPipelineProgressesInput {
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, { nullable: true })
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
domainName?: StringFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, {nullable:true})
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
displayName?: StringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
domainName?: StringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, { nullable: true })
logo?: NullableStringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
displayName?: StringFieldUpdateOperationsInput;
@Field(() => WorkspaceMemberUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
workspaceMember?: WorkspaceMemberUpdateManyWithoutWorkspaceNestedInput;
@Field(() => NullableStringFieldUpdateOperationsInput, {nullable:true})
logo?: NullableStringFieldUpdateOperationsInput;
@Field(() => CompanyUpdateManyWithoutWorkspaceNestedInput, { nullable: true })
companies?: CompanyUpdateManyWithoutWorkspaceNestedInput;
@Field(() => WorkspaceMemberUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
workspaceMember?: WorkspaceMemberUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PersonUpdateManyWithoutWorkspaceNestedInput, { nullable: true })
people?: PersonUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CompanyUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
companies?: CompanyUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentThreadUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
commentThreads?: CommentThreadUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PersonUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
people?: PersonUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentUpdateManyWithoutWorkspaceNestedInput, { nullable: true })
comments?: CommentUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentThreadUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
commentThreads?: CommentThreadUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
pipelines?: PipelineUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
comments?: CommentUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineStageUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
pipelineStages?: PipelineStageUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
pipelines?: PipelineUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineStageUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
pipelineStages?: PipelineStageUpdateManyWithoutWorkspaceNestedInput;
}

View File

@ -14,53 +14,46 @@ import { PipelineProgressUpdateManyWithoutWorkspaceNestedInput } from '../pipeli
@InputType()
export class WorkspaceUpdateWithoutPipelineStagesInput {
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, { nullable: true })
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
domainName?: StringFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, {nullable:true})
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
displayName?: StringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
domainName?: StringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, { nullable: true })
logo?: NullableStringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
displayName?: StringFieldUpdateOperationsInput;
@Field(() => WorkspaceMemberUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
workspaceMember?: WorkspaceMemberUpdateManyWithoutWorkspaceNestedInput;
@Field(() => NullableStringFieldUpdateOperationsInput, {nullable:true})
logo?: NullableStringFieldUpdateOperationsInput;
@Field(() => CompanyUpdateManyWithoutWorkspaceNestedInput, { nullable: true })
companies?: CompanyUpdateManyWithoutWorkspaceNestedInput;
@Field(() => WorkspaceMemberUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
workspaceMember?: WorkspaceMemberUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PersonUpdateManyWithoutWorkspaceNestedInput, { nullable: true })
people?: PersonUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CompanyUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
companies?: CompanyUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentThreadUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
commentThreads?: CommentThreadUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PersonUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
people?: PersonUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentUpdateManyWithoutWorkspaceNestedInput, { nullable: true })
comments?: CommentUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentThreadUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
commentThreads?: CommentThreadUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
pipelines?: PipelineUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
comments?: CommentUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineProgressUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
pipelineProgresses?: PipelineProgressUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
pipelines?: PipelineUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineProgressUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
pipelineProgresses?: PipelineProgressUpdateManyWithoutWorkspaceNestedInput;
}

View File

@ -14,53 +14,46 @@ import { PipelineProgressUpdateManyWithoutWorkspaceNestedInput } from '../pipeli
@InputType()
export class WorkspaceUpdateWithoutPipelinesInput {
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, { nullable: true })
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
domainName?: StringFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, {nullable:true})
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
displayName?: StringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
domainName?: StringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, { nullable: true })
logo?: NullableStringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
displayName?: StringFieldUpdateOperationsInput;
@Field(() => WorkspaceMemberUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
workspaceMember?: WorkspaceMemberUpdateManyWithoutWorkspaceNestedInput;
@Field(() => NullableStringFieldUpdateOperationsInput, {nullable:true})
logo?: NullableStringFieldUpdateOperationsInput;
@Field(() => CompanyUpdateManyWithoutWorkspaceNestedInput, { nullable: true })
companies?: CompanyUpdateManyWithoutWorkspaceNestedInput;
@Field(() => WorkspaceMemberUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
workspaceMember?: WorkspaceMemberUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PersonUpdateManyWithoutWorkspaceNestedInput, { nullable: true })
people?: PersonUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CompanyUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
companies?: CompanyUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentThreadUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
commentThreads?: CommentThreadUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PersonUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
people?: PersonUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentUpdateManyWithoutWorkspaceNestedInput, { nullable: true })
comments?: CommentUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentThreadUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
commentThreads?: CommentThreadUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineStageUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
pipelineStages?: PipelineStageUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
comments?: CommentUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineProgressUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
pipelineProgresses?: PipelineProgressUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineStageUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
pipelineStages?: PipelineStageUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineProgressUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
pipelineProgresses?: PipelineProgressUpdateManyWithoutWorkspaceNestedInput;
}

View File

@ -14,53 +14,46 @@ import { PipelineProgressUpdateManyWithoutWorkspaceNestedInput } from '../pipeli
@InputType()
export class WorkspaceUpdateWithoutWorkspaceMemberInput {
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, { nullable: true })
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
domainName?: StringFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, {nullable:true})
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
displayName?: StringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
domainName?: StringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, { nullable: true })
logo?: NullableStringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
displayName?: StringFieldUpdateOperationsInput;
@Field(() => CompanyUpdateManyWithoutWorkspaceNestedInput, { nullable: true })
companies?: CompanyUpdateManyWithoutWorkspaceNestedInput;
@Field(() => NullableStringFieldUpdateOperationsInput, {nullable:true})
logo?: NullableStringFieldUpdateOperationsInput;
@Field(() => PersonUpdateManyWithoutWorkspaceNestedInput, { nullable: true })
people?: PersonUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CompanyUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
companies?: CompanyUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentThreadUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
commentThreads?: CommentThreadUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PersonUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
people?: PersonUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentUpdateManyWithoutWorkspaceNestedInput, { nullable: true })
comments?: CommentUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentThreadUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
commentThreads?: CommentThreadUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
pipelines?: PipelineUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
comments?: CommentUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineStageUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
pipelineStages?: PipelineStageUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
pipelines?: PipelineUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineProgressUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
pipelineProgresses?: PipelineProgressUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineStageUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
pipelineStages?: PipelineStageUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineProgressUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
pipelineProgresses?: PipelineProgressUpdateManyWithoutWorkspaceNestedInput;
}

View File

@ -15,58 +15,49 @@ import { PipelineProgressUpdateManyWithoutWorkspaceNestedInput } from '../pipeli
@InputType()
export class WorkspaceUpdateInput {
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, { nullable: true })
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
domainName?: StringFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, {nullable:true})
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
displayName?: StringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
domainName?: StringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, { nullable: true })
logo?: NullableStringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
displayName?: StringFieldUpdateOperationsInput;
@Field(() => WorkspaceMemberUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
workspaceMember?: WorkspaceMemberUpdateManyWithoutWorkspaceNestedInput;
@Field(() => NullableStringFieldUpdateOperationsInput, {nullable:true})
logo?: NullableStringFieldUpdateOperationsInput;
@Field(() => CompanyUpdateManyWithoutWorkspaceNestedInput, { nullable: true })
companies?: CompanyUpdateManyWithoutWorkspaceNestedInput;
@Field(() => WorkspaceMemberUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
workspaceMember?: WorkspaceMemberUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PersonUpdateManyWithoutWorkspaceNestedInput, { nullable: true })
people?: PersonUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CompanyUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
companies?: CompanyUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentThreadUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
commentThreads?: CommentThreadUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PersonUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
people?: PersonUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentUpdateManyWithoutWorkspaceNestedInput, { nullable: true })
comments?: CommentUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentThreadUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
commentThreads?: CommentThreadUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
pipelines?: PipelineUpdateManyWithoutWorkspaceNestedInput;
@Field(() => CommentUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
comments?: CommentUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineStageUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
pipelineStages?: PipelineStageUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
pipelines?: PipelineUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineProgressUpdateManyWithoutWorkspaceNestedInput, {
nullable: true,
})
pipelineProgresses?: PipelineProgressUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineStageUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
pipelineStages?: PipelineStageUpdateManyWithoutWorkspaceNestedInput;
@Field(() => PipelineProgressUpdateManyWithoutWorkspaceNestedInput, {nullable:true})
pipelineProgresses?: PipelineProgressUpdateManyWithoutWorkspaceNestedInput;
}

View File

@ -6,11 +6,12 @@ import { WorkspaceCreateWithoutCommentThreadsInput } from './workspace-create-wi
@InputType()
export class WorkspaceUpsertWithoutCommentThreadsInput {
@Field(() => WorkspaceUpdateWithoutCommentThreadsInput, { nullable: false })
@Type(() => WorkspaceUpdateWithoutCommentThreadsInput)
update!: WorkspaceUpdateWithoutCommentThreadsInput;
@Field(() => WorkspaceCreateWithoutCommentThreadsInput, { nullable: false })
@Type(() => WorkspaceCreateWithoutCommentThreadsInput)
create!: WorkspaceCreateWithoutCommentThreadsInput;
@Field(() => WorkspaceUpdateWithoutCommentThreadsInput, {nullable:false})
@Type(() => WorkspaceUpdateWithoutCommentThreadsInput)
update!: WorkspaceUpdateWithoutCommentThreadsInput;
@Field(() => WorkspaceCreateWithoutCommentThreadsInput, {nullable:false})
@Type(() => WorkspaceCreateWithoutCommentThreadsInput)
create!: WorkspaceCreateWithoutCommentThreadsInput;
}

View File

@ -6,11 +6,12 @@ import { WorkspaceCreateWithoutCommentsInput } from './workspace-create-without-
@InputType()
export class WorkspaceUpsertWithoutCommentsInput {
@Field(() => WorkspaceUpdateWithoutCommentsInput, { nullable: false })
@Type(() => WorkspaceUpdateWithoutCommentsInput)
update!: WorkspaceUpdateWithoutCommentsInput;
@Field(() => WorkspaceCreateWithoutCommentsInput, { nullable: false })
@Type(() => WorkspaceCreateWithoutCommentsInput)
create!: WorkspaceCreateWithoutCommentsInput;
@Field(() => WorkspaceUpdateWithoutCommentsInput, {nullable:false})
@Type(() => WorkspaceUpdateWithoutCommentsInput)
update!: WorkspaceUpdateWithoutCommentsInput;
@Field(() => WorkspaceCreateWithoutCommentsInput, {nullable:false})
@Type(() => WorkspaceCreateWithoutCommentsInput)
create!: WorkspaceCreateWithoutCommentsInput;
}

View File

@ -6,11 +6,12 @@ import { WorkspaceCreateWithoutCompaniesInput } from './workspace-create-without
@InputType()
export class WorkspaceUpsertWithoutCompaniesInput {
@Field(() => WorkspaceUpdateWithoutCompaniesInput, { nullable: false })
@Type(() => WorkspaceUpdateWithoutCompaniesInput)
update!: WorkspaceUpdateWithoutCompaniesInput;
@Field(() => WorkspaceCreateWithoutCompaniesInput, { nullable: false })
@Type(() => WorkspaceCreateWithoutCompaniesInput)
create!: WorkspaceCreateWithoutCompaniesInput;
@Field(() => WorkspaceUpdateWithoutCompaniesInput, {nullable:false})
@Type(() => WorkspaceUpdateWithoutCompaniesInput)
update!: WorkspaceUpdateWithoutCompaniesInput;
@Field(() => WorkspaceCreateWithoutCompaniesInput, {nullable:false})
@Type(() => WorkspaceCreateWithoutCompaniesInput)
create!: WorkspaceCreateWithoutCompaniesInput;
}

View File

@ -6,11 +6,12 @@ import { WorkspaceCreateWithoutPeopleInput } from './workspace-create-without-pe
@InputType()
export class WorkspaceUpsertWithoutPeopleInput {
@Field(() => WorkspaceUpdateWithoutPeopleInput, { nullable: false })
@Type(() => WorkspaceUpdateWithoutPeopleInput)
update!: WorkspaceUpdateWithoutPeopleInput;
@Field(() => WorkspaceCreateWithoutPeopleInput, { nullable: false })
@Type(() => WorkspaceCreateWithoutPeopleInput)
create!: WorkspaceCreateWithoutPeopleInput;
@Field(() => WorkspaceUpdateWithoutPeopleInput, {nullable:false})
@Type(() => WorkspaceUpdateWithoutPeopleInput)
update!: WorkspaceUpdateWithoutPeopleInput;
@Field(() => WorkspaceCreateWithoutPeopleInput, {nullable:false})
@Type(() => WorkspaceCreateWithoutPeopleInput)
create!: WorkspaceCreateWithoutPeopleInput;
}

View File

@ -6,15 +6,12 @@ import { WorkspaceCreateWithoutPipelineProgressesInput } from './workspace-creat
@InputType()
export class WorkspaceUpsertWithoutPipelineProgressesInput {
@Field(() => WorkspaceUpdateWithoutPipelineProgressesInput, {
nullable: false,
})
@Type(() => WorkspaceUpdateWithoutPipelineProgressesInput)
update!: WorkspaceUpdateWithoutPipelineProgressesInput;
@Field(() => WorkspaceCreateWithoutPipelineProgressesInput, {
nullable: false,
})
@Type(() => WorkspaceCreateWithoutPipelineProgressesInput)
create!: WorkspaceCreateWithoutPipelineProgressesInput;
@Field(() => WorkspaceUpdateWithoutPipelineProgressesInput, {nullable:false})
@Type(() => WorkspaceUpdateWithoutPipelineProgressesInput)
update!: WorkspaceUpdateWithoutPipelineProgressesInput;
@Field(() => WorkspaceCreateWithoutPipelineProgressesInput, {nullable:false})
@Type(() => WorkspaceCreateWithoutPipelineProgressesInput)
create!: WorkspaceCreateWithoutPipelineProgressesInput;
}

View File

@ -6,11 +6,12 @@ import { WorkspaceCreateWithoutPipelineStagesInput } from './workspace-create-wi
@InputType()
export class WorkspaceUpsertWithoutPipelineStagesInput {
@Field(() => WorkspaceUpdateWithoutPipelineStagesInput, { nullable: false })
@Type(() => WorkspaceUpdateWithoutPipelineStagesInput)
update!: WorkspaceUpdateWithoutPipelineStagesInput;
@Field(() => WorkspaceCreateWithoutPipelineStagesInput, { nullable: false })
@Type(() => WorkspaceCreateWithoutPipelineStagesInput)
create!: WorkspaceCreateWithoutPipelineStagesInput;
@Field(() => WorkspaceUpdateWithoutPipelineStagesInput, {nullable:false})
@Type(() => WorkspaceUpdateWithoutPipelineStagesInput)
update!: WorkspaceUpdateWithoutPipelineStagesInput;
@Field(() => WorkspaceCreateWithoutPipelineStagesInput, {nullable:false})
@Type(() => WorkspaceCreateWithoutPipelineStagesInput)
create!: WorkspaceCreateWithoutPipelineStagesInput;
}

Some files were not shown because too many files have changed in this diff Show More