0f9c6dede7
* Clean BE post refactor to remove Hasura * Add server CI
17 lines
657 B
TypeScript
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;
|
|
}
|