Fix graphql queries
This commit is contained in:
@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user