Files
twenty/server/src/api/@generated/company/company-update-many-with-where-without-workspace.input.ts
T
Charles Bochet 0f9c6dede7 Clean server post refactor to remove Hasura (#156)
* Clean BE post refactor to remove Hasura

* Add server CI
2023-05-29 22:42:24 +02:00

17 lines
657 B
TypeScript

import { Field } from '@nestjs/graphql';
import { InputType } from '@nestjs/graphql';
import { CompanyScalarWhereInput } from './company-scalar-where.input';
import { Type } from 'class-transformer';
import { CompanyUpdateManyMutationInput } from './company-update-many-mutation.input';
@InputType()
export class CompanyUpdateManyWithWhereWithoutWorkspaceInput {
@Field(() => CompanyScalarWhereInput, { nullable: false })
@Type(() => CompanyScalarWhereInput)
where!: CompanyScalarWhereInput;
@Field(() => CompanyUpdateManyMutationInput, { nullable: false })
@Type(() => CompanyUpdateManyMutationInput)
data!: CompanyUpdateManyMutationInput;
}