Fix graphql queries

This commit is contained in:
Charles Bochet
2023-05-26 00:31:43 +02:00
parent b0044ed1a2
commit 17f5cf1766
1012 changed files with 301 additions and 19768 deletions

View File

@ -0,0 +1,16 @@
import * as TypeGraphQL from "type-graphql";
import * as GraphQLScalars from "graphql-scalars";
import { RefreshTokenCreateManyInput } from "../../../inputs/RefreshTokenCreateManyInput";
@TypeGraphQL.ArgsType()
export class CreateManyRefreshTokenArgs {
@TypeGraphQL.Field(_type => [RefreshTokenCreateManyInput], {
nullable: false
})
data!: RefreshTokenCreateManyInput[];
@TypeGraphQL.Field(_type => Boolean, {
nullable: true
})
skipDuplicates?: boolean | undefined;
}