Clean server post refactor to remove Hasura (#156)
* Clean BE post refactor to remove Hasura * Add server CI
This commit is contained in:
@ -6,12 +6,11 @@ import { PersonWhereInput } from './person-where.input';
|
||||
|
||||
@ArgsType()
|
||||
export class UpdateManyPersonArgs {
|
||||
@Field(() => PersonUpdateManyMutationInput, { nullable: false })
|
||||
@Type(() => PersonUpdateManyMutationInput)
|
||||
data!: PersonUpdateManyMutationInput;
|
||||
|
||||
@Field(() => PersonUpdateManyMutationInput, {nullable:false})
|
||||
@Type(() => PersonUpdateManyMutationInput)
|
||||
data!: PersonUpdateManyMutationInput;
|
||||
|
||||
@Field(() => PersonWhereInput, {nullable:true})
|
||||
@Type(() => PersonWhereInput)
|
||||
where?: PersonWhereInput;
|
||||
@Field(() => PersonWhereInput, { nullable: true })
|
||||
@Type(() => PersonWhereInput)
|
||||
where?: PersonWhereInput;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user