Disable linter on generated code (#363)

This commit is contained in:
Félix Malfait
2023-06-23 08:43:41 -07:00
committed by GitHub
parent ceaf482f62
commit 1c7980b270
976 changed files with 14917 additions and 15292 deletions

View File

@ -6,12 +6,13 @@ import { UserMaxAggregate } from './user-max-aggregate.output';
@ObjectType()
export class AggregateUser {
@Field(() => UserCountAggregate, { nullable: true })
_count?: UserCountAggregate;
@Field(() => UserMinAggregate, { nullable: true })
_min?: UserMinAggregate;
@Field(() => UserCountAggregate, {nullable:true})
_count?: UserCountAggregate;
@Field(() => UserMaxAggregate, { nullable: true })
_max?: UserMaxAggregate;
@Field(() => UserMinAggregate, {nullable:true})
_min?: UserMinAggregate;
@Field(() => UserMaxAggregate, {nullable:true})
_max?: UserMaxAggregate;
}

View File

@ -5,10 +5,11 @@ import { Type } from 'class-transformer';
@ArgsType()
export class CreateManyUserArgs {
@Field(() => [UserCreateManyInput], { nullable: false })
@Type(() => UserCreateManyInput)
data!: Array<UserCreateManyInput>;
@Field(() => Boolean, { nullable: true })
skipDuplicates?: boolean;
@Field(() => [UserCreateManyInput], {nullable:false})
@Type(() => UserCreateManyInput)
data!: Array<UserCreateManyInput>;
@Field(() => Boolean, {nullable:true})
skipDuplicates?: boolean;
}

View File

@ -5,7 +5,8 @@ import { Type } from 'class-transformer';
@ArgsType()
export class CreateOneUserArgs {
@Field(() => UserCreateInput, { nullable: false })
@Type(() => UserCreateInput)
data!: UserCreateInput;
@Field(() => UserCreateInput, {nullable:false})
@Type(() => UserCreateInput)
data!: UserCreateInput;
}

View File

@ -5,7 +5,8 @@ import { Type } from 'class-transformer';
@ArgsType()
export class DeleteManyUserArgs {
@Field(() => UserWhereInput, { nullable: true })
@Type(() => UserWhereInput)
where?: UserWhereInput;
@Field(() => UserWhereInput, {nullable:true})
@Type(() => UserWhereInput)
where?: UserWhereInput;
}

View File

@ -5,7 +5,8 @@ import { Type } from 'class-transformer';
@ArgsType()
export class DeleteOneUserArgs {
@Field(() => UserWhereUniqueInput, { nullable: false })
@Type(() => UserWhereUniqueInput)
where!: UserWhereUniqueInput;
@Field(() => UserWhereUniqueInput, {nullable:false})
@Type(() => UserWhereUniqueInput)
where!: UserWhereUniqueInput;
}

View File

@ -9,22 +9,23 @@ import { UserScalarFieldEnum } from './user-scalar-field.enum';
@ArgsType()
export class FindFirstUserOrThrowArgs {
@Field(() => UserWhereInput, { nullable: true })
@Type(() => UserWhereInput)
where?: UserWhereInput;
@Field(() => [UserOrderByWithRelationInput], { nullable: true })
orderBy?: Array<UserOrderByWithRelationInput>;
@Field(() => UserWhereInput, {nullable:true})
@Type(() => UserWhereInput)
where?: UserWhereInput;
@Field(() => UserWhereUniqueInput, { nullable: true })
cursor?: UserWhereUniqueInput;
@Field(() => [UserOrderByWithRelationInput], {nullable:true})
orderBy?: Array<UserOrderByWithRelationInput>;
@Field(() => Int, { nullable: true })
take?: number;
@Field(() => UserWhereUniqueInput, {nullable:true})
cursor?: UserWhereUniqueInput;
@Field(() => Int, { nullable: true })
skip?: number;
@Field(() => Int, {nullable:true})
take?: number;
@Field(() => [UserScalarFieldEnum], { nullable: true })
distinct?: Array<keyof typeof UserScalarFieldEnum>;
@Field(() => Int, {nullable:true})
skip?: number;
@Field(() => [UserScalarFieldEnum], {nullable:true})
distinct?: Array<keyof typeof UserScalarFieldEnum>;
}

View File

@ -9,22 +9,23 @@ import { UserScalarFieldEnum } from './user-scalar-field.enum';
@ArgsType()
export class FindFirstUserArgs {
@Field(() => UserWhereInput, { nullable: true })
@Type(() => UserWhereInput)
where?: UserWhereInput;
@Field(() => [UserOrderByWithRelationInput], { nullable: true })
orderBy?: Array<UserOrderByWithRelationInput>;
@Field(() => UserWhereInput, {nullable:true})
@Type(() => UserWhereInput)
where?: UserWhereInput;
@Field(() => UserWhereUniqueInput, { nullable: true })
cursor?: UserWhereUniqueInput;
@Field(() => [UserOrderByWithRelationInput], {nullable:true})
orderBy?: Array<UserOrderByWithRelationInput>;
@Field(() => Int, { nullable: true })
take?: number;
@Field(() => UserWhereUniqueInput, {nullable:true})
cursor?: UserWhereUniqueInput;
@Field(() => Int, { nullable: true })
skip?: number;
@Field(() => Int, {nullable:true})
take?: number;
@Field(() => [UserScalarFieldEnum], { nullable: true })
distinct?: Array<keyof typeof UserScalarFieldEnum>;
@Field(() => Int, {nullable:true})
skip?: number;
@Field(() => [UserScalarFieldEnum], {nullable:true})
distinct?: Array<keyof typeof UserScalarFieldEnum>;
}

View File

@ -9,22 +9,23 @@ import { UserScalarFieldEnum } from './user-scalar-field.enum';
@ArgsType()
export class FindManyUserArgs {
@Field(() => UserWhereInput, { nullable: true })
@Type(() => UserWhereInput)
where?: UserWhereInput;
@Field(() => [UserOrderByWithRelationInput], { nullable: true })
orderBy?: Array<UserOrderByWithRelationInput>;
@Field(() => UserWhereInput, {nullable:true})
@Type(() => UserWhereInput)
where?: UserWhereInput;
@Field(() => UserWhereUniqueInput, { nullable: true })
cursor?: UserWhereUniqueInput;
@Field(() => [UserOrderByWithRelationInput], {nullable:true})
orderBy?: Array<UserOrderByWithRelationInput>;
@Field(() => Int, { nullable: true })
take?: number;
@Field(() => UserWhereUniqueInput, {nullable:true})
cursor?: UserWhereUniqueInput;
@Field(() => Int, { nullable: true })
skip?: number;
@Field(() => Int, {nullable:true})
take?: number;
@Field(() => [UserScalarFieldEnum], { nullable: true })
distinct?: Array<keyof typeof UserScalarFieldEnum>;
@Field(() => Int, {nullable:true})
skip?: number;
@Field(() => [UserScalarFieldEnum], {nullable:true})
distinct?: Array<keyof typeof UserScalarFieldEnum>;
}

View File

@ -5,7 +5,8 @@ import { Type } from 'class-transformer';
@ArgsType()
export class FindUniqueUserOrThrowArgs {
@Field(() => UserWhereUniqueInput, { nullable: false })
@Type(() => UserWhereUniqueInput)
where!: UserWhereUniqueInput;
@Field(() => UserWhereUniqueInput, {nullable:false})
@Type(() => UserWhereUniqueInput)
where!: UserWhereUniqueInput;
}

View File

@ -5,7 +5,8 @@ import { Type } from 'class-transformer';
@ArgsType()
export class FindUniqueUserArgs {
@Field(() => UserWhereUniqueInput, { nullable: false })
@Type(() => UserWhereUniqueInput)
where!: UserWhereUniqueInput;
@Field(() => UserWhereUniqueInput, {nullable:false})
@Type(() => UserWhereUniqueInput)
where!: UserWhereUniqueInput;
}

View File

@ -6,11 +6,12 @@ import { UserWhereInput } from './user-where.input';
@ArgsType()
export class UpdateManyUserArgs {
@Field(() => UserUpdateManyMutationInput, { nullable: false })
@Type(() => UserUpdateManyMutationInput)
data!: UserUpdateManyMutationInput;
@Field(() => UserWhereInput, { nullable: true })
@Type(() => UserWhereInput)
where?: UserWhereInput;
@Field(() => UserUpdateManyMutationInput, {nullable:false})
@Type(() => UserUpdateManyMutationInput)
data!: UserUpdateManyMutationInput;
@Field(() => UserWhereInput, {nullable:true})
@Type(() => UserWhereInput)
where?: UserWhereInput;
}

View File

@ -6,11 +6,12 @@ import { UserWhereUniqueInput } from './user-where-unique.input';
@ArgsType()
export class UpdateOneUserArgs {
@Field(() => UserUpdateInput, { nullable: false })
@Type(() => UserUpdateInput)
data!: UserUpdateInput;
@Field(() => UserWhereUniqueInput, { nullable: false })
@Type(() => UserWhereUniqueInput)
where!: UserWhereUniqueInput;
@Field(() => UserUpdateInput, {nullable:false})
@Type(() => UserUpdateInput)
data!: UserUpdateInput;
@Field(() => UserWhereUniqueInput, {nullable:false})
@Type(() => UserWhereUniqueInput)
where!: UserWhereUniqueInput;
}

View File

@ -7,15 +7,16 @@ import { UserUpdateInput } from './user-update.input';
@ArgsType()
export class UpsertOneUserArgs {
@Field(() => UserWhereUniqueInput, { nullable: false })
@Type(() => UserWhereUniqueInput)
where!: UserWhereUniqueInput;
@Field(() => UserCreateInput, { nullable: false })
@Type(() => UserCreateInput)
create!: UserCreateInput;
@Field(() => UserWhereUniqueInput, {nullable:false})
@Type(() => UserWhereUniqueInput)
where!: UserWhereUniqueInput;
@Field(() => UserUpdateInput, { nullable: false })
@Type(() => UserUpdateInput)
update!: UserUpdateInput;
@Field(() => UserCreateInput, {nullable:false})
@Type(() => UserCreateInput)
create!: UserCreateInput;
@Field(() => UserUpdateInput, {nullable:false})
@Type(() => UserUpdateInput)
update!: UserUpdateInput;
}

View File

@ -11,28 +11,29 @@ import { UserMaxAggregateInput } from './user-max-aggregate.input';
@ArgsType()
export class UserAggregateArgs {
@Field(() => UserWhereInput, { nullable: true })
@Type(() => UserWhereInput)
where?: UserWhereInput;
@Field(() => [UserOrderByWithRelationInput], { nullable: true })
orderBy?: Array<UserOrderByWithRelationInput>;
@Field(() => UserWhereInput, {nullable:true})
@Type(() => UserWhereInput)
where?: UserWhereInput;
@Field(() => UserWhereUniqueInput, { nullable: true })
cursor?: UserWhereUniqueInput;
@Field(() => [UserOrderByWithRelationInput], {nullable:true})
orderBy?: Array<UserOrderByWithRelationInput>;
@Field(() => Int, { nullable: true })
take?: number;
@Field(() => UserWhereUniqueInput, {nullable:true})
cursor?: UserWhereUniqueInput;
@Field(() => Int, { nullable: true })
skip?: number;
@Field(() => Int, {nullable:true})
take?: number;
@Field(() => UserCountAggregateInput, { nullable: true })
_count?: UserCountAggregateInput;
@Field(() => Int, {nullable:true})
skip?: number;
@Field(() => UserMinAggregateInput, { nullable: true })
_min?: UserMinAggregateInput;
@Field(() => UserCountAggregateInput, {nullable:true})
_count?: UserCountAggregateInput;
@Field(() => UserMaxAggregateInput, { nullable: true })
_max?: UserMaxAggregateInput;
@Field(() => UserMinAggregateInput, {nullable:true})
_min?: UserMinAggregateInput;
@Field(() => UserMaxAggregateInput, {nullable:true})
_max?: UserMaxAggregateInput;
}

View File

@ -4,48 +4,49 @@ import { HideField } from '@nestjs/graphql';
@InputType()
export class UserCountAggregateInput {
@Field(() => Boolean, { nullable: true })
id?: true;
@Field(() => Boolean, { nullable: true })
createdAt?: true;
@Field(() => Boolean, {nullable:true})
id?: true;
@Field(() => Boolean, { nullable: true })
updatedAt?: true;
@Field(() => Boolean, {nullable:true})
createdAt?: true;
@Field(() => Boolean, { nullable: true })
deletedAt?: true;
@Field(() => Boolean, {nullable:true})
updatedAt?: true;
@Field(() => Boolean, { nullable: true })
lastSeen?: true;
@Field(() => Boolean, {nullable:true})
deletedAt?: true;
@Field(() => Boolean, { nullable: true })
disabled?: true;
@Field(() => Boolean, {nullable:true})
lastSeen?: true;
@Field(() => Boolean, { nullable: true })
displayName?: true;
@Field(() => Boolean, {nullable:true})
disabled?: true;
@Field(() => Boolean, { nullable: true })
email?: true;
@Field(() => Boolean, {nullable:true})
displayName?: true;
@Field(() => Boolean, { nullable: true })
avatarUrl?: true;
@Field(() => Boolean, {nullable:true})
email?: true;
@Field(() => Boolean, { nullable: true })
locale?: true;
@Field(() => Boolean, {nullable:true})
avatarUrl?: true;
@Field(() => Boolean, { nullable: true })
phoneNumber?: true;
@Field(() => Boolean, {nullable:true})
locale?: true;
@HideField()
passwordHash?: true;
@Field(() => Boolean, {nullable:true})
phoneNumber?: true;
@Field(() => Boolean, { nullable: true })
emailVerified?: true;
@HideField()
passwordHash?: true;
@Field(() => Boolean, { nullable: true })
metadata?: true;
@Field(() => Boolean, {nullable:true})
emailVerified?: true;
@Field(() => Boolean, { nullable: true })
_all?: true;
@Field(() => Boolean, {nullable:true})
metadata?: true;
@Field(() => Boolean, {nullable:true})
_all?: true;
}

View File

@ -5,48 +5,49 @@ import { HideField } from '@nestjs/graphql';
@ObjectType()
export class UserCountAggregate {
@Field(() => Int, { nullable: false })
id!: number;
@Field(() => Int, { nullable: false })
createdAt!: number;
@Field(() => Int, {nullable:false})
id!: number;
@Field(() => Int, { nullable: false })
updatedAt!: number;
@Field(() => Int, {nullable:false})
createdAt!: number;
@Field(() => Int, { nullable: false })
deletedAt!: number;
@Field(() => Int, {nullable:false})
updatedAt!: number;
@Field(() => Int, { nullable: false })
lastSeen!: number;
@Field(() => Int, {nullable:false})
deletedAt!: number;
@Field(() => Int, { nullable: false })
disabled!: number;
@Field(() => Int, {nullable:false})
lastSeen!: number;
@Field(() => Int, { nullable: false })
displayName!: number;
@Field(() => Int, {nullable:false})
disabled!: number;
@Field(() => Int, { nullable: false })
email!: number;
@Field(() => Int, {nullable:false})
displayName!: number;
@Field(() => Int, { nullable: false })
avatarUrl!: number;
@Field(() => Int, {nullable:false})
email!: number;
@Field(() => Int, { nullable: false })
locale!: number;
@Field(() => Int, {nullable:false})
avatarUrl!: number;
@Field(() => Int, { nullable: false })
phoneNumber!: number;
@Field(() => Int, {nullable:false})
locale!: number;
@HideField()
passwordHash!: number;
@Field(() => Int, {nullable:false})
phoneNumber!: number;
@Field(() => Int, { nullable: false })
emailVerified!: number;
@HideField()
passwordHash!: number;
@Field(() => Int, { nullable: false })
metadata!: number;
@Field(() => Int, {nullable:false})
emailVerified!: number;
@Field(() => Int, { nullable: false })
_all!: number;
@Field(() => Int, {nullable:false})
metadata!: number;
@Field(() => Int, {nullable:false})
_all!: number;
}

View File

@ -5,45 +5,46 @@ import { HideField } from '@nestjs/graphql';
@InputType()
export class UserCountOrderByAggregateInput {
@Field(() => SortOrder, { nullable: true })
id?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
createdAt?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
id?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
updatedAt?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
createdAt?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
deletedAt?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
updatedAt?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
lastSeen?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
deletedAt?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
disabled?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
lastSeen?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
displayName?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
disabled?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
email?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
displayName?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
avatarUrl?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
email?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
locale?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
avatarUrl?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
phoneNumber?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
locale?: keyof typeof SortOrder;
@HideField()
passwordHash?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
phoneNumber?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
emailVerified?: keyof typeof SortOrder;
@HideField()
passwordHash?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
metadata?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
emailVerified?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
metadata?: keyof typeof SortOrder;
}

View File

@ -4,12 +4,13 @@ import { Int } from '@nestjs/graphql';
@ObjectType()
export class UserCount {
@Field(() => Int, { nullable: false })
companies?: number;
@Field(() => Int, { nullable: false })
refreshTokens?: number;
@Field(() => Int, {nullable:false})
companies?: number;
@Field(() => Int, { nullable: false })
comments?: number;
@Field(() => Int, {nullable:false})
refreshTokens?: number;
@Field(() => Int, {nullable:false})
comments?: number;
}

View File

@ -5,45 +5,46 @@ import { GraphQLJSON } from 'graphql-type-json';
@InputType()
export class UserCreateManyInput {
@Field(() => String, { nullable: true })
id?: string;
@Field(() => Date, { nullable: true })
createdAt?: Date | string;
@Field(() => String, {nullable:true})
id?: string;
@Field(() => Date, { nullable: true })
updatedAt?: Date | string;
@Field(() => Date, {nullable:true})
createdAt?: Date | string;
@Field(() => Date, { nullable: true })
deletedAt?: Date | string;
@Field(() => Date, {nullable:true})
updatedAt?: Date | string;
@Field(() => Date, { nullable: true })
lastSeen?: Date | string;
@Field(() => Date, {nullable:true})
deletedAt?: Date | string;
@Field(() => Boolean, { nullable: true })
disabled?: boolean;
@Field(() => Date, {nullable:true})
lastSeen?: Date | string;
@Field(() => String, { nullable: false })
displayName!: string;
@Field(() => Boolean, {nullable:true})
disabled?: boolean;
@Field(() => String, { nullable: false })
email!: string;
@Field(() => String, {nullable:false})
displayName!: string;
@Field(() => String, { nullable: true })
avatarUrl?: string;
@Field(() => String, {nullable:false})
email!: string;
@Field(() => String, { nullable: false })
locale!: string;
@Field(() => String, {nullable:true})
avatarUrl?: string;
@Field(() => String, { nullable: true })
phoneNumber?: string;
@Field(() => String, {nullable:false})
locale!: string;
@HideField()
passwordHash?: string;
@Field(() => String, {nullable:true})
phoneNumber?: string;
@Field(() => Boolean, { nullable: true })
emailVerified?: boolean;
@HideField()
passwordHash?: string;
@Field(() => GraphQLJSON, { nullable: true })
metadata?: any;
@Field(() => Boolean, {nullable:true})
emailVerified?: boolean;
@Field(() => GraphQLJSON, {nullable:true})
metadata?: any;
}

View File

@ -8,13 +8,14 @@ import { Type } from 'class-transformer';
@InputType()
export class UserCreateNestedOneWithoutCommentsInput {
@HideField()
create?: UserCreateWithoutCommentsInput;
@HideField()
connectOrCreate?: UserCreateOrConnectWithoutCommentsInput;
@HideField()
create?: UserCreateWithoutCommentsInput;
@Field(() => UserWhereUniqueInput, { nullable: true })
@Type(() => UserWhereUniqueInput)
connect?: UserWhereUniqueInput;
@HideField()
connectOrCreate?: UserCreateOrConnectWithoutCommentsInput;
@Field(() => UserWhereUniqueInput, {nullable:true})
@Type(() => UserWhereUniqueInput)
connect?: UserWhereUniqueInput;
}

View File

@ -8,13 +8,14 @@ import { Type } from 'class-transformer';
@InputType()
export class UserCreateNestedOneWithoutCompaniesInput {
@HideField()
create?: UserCreateWithoutCompaniesInput;
@HideField()
connectOrCreate?: UserCreateOrConnectWithoutCompaniesInput;
@HideField()
create?: UserCreateWithoutCompaniesInput;
@Field(() => UserWhereUniqueInput, { nullable: true })
@Type(() => UserWhereUniqueInput)
connect?: UserWhereUniqueInput;
@HideField()
connectOrCreate?: UserCreateOrConnectWithoutCompaniesInput;
@Field(() => UserWhereUniqueInput, {nullable:true})
@Type(() => UserWhereUniqueInput)
connect?: UserWhereUniqueInput;
}

View File

@ -7,15 +7,16 @@ import { UserWhereUniqueInput } from './user-where-unique.input';
@InputType()
export class UserCreateNestedOneWithoutRefreshTokensInput {
@Field(() => UserCreateWithoutRefreshTokensInput, { nullable: true })
@Type(() => UserCreateWithoutRefreshTokensInput)
create?: UserCreateWithoutRefreshTokensInput;
@Field(() => UserCreateOrConnectWithoutRefreshTokensInput, { nullable: true })
@Type(() => UserCreateOrConnectWithoutRefreshTokensInput)
connectOrCreate?: UserCreateOrConnectWithoutRefreshTokensInput;
@Field(() => UserCreateWithoutRefreshTokensInput, {nullable:true})
@Type(() => UserCreateWithoutRefreshTokensInput)
create?: UserCreateWithoutRefreshTokensInput;
@Field(() => UserWhereUniqueInput, { nullable: true })
@Type(() => UserWhereUniqueInput)
connect?: UserWhereUniqueInput;
@Field(() => UserCreateOrConnectWithoutRefreshTokensInput, {nullable:true})
@Type(() => UserCreateOrConnectWithoutRefreshTokensInput)
connectOrCreate?: UserCreateOrConnectWithoutRefreshTokensInput;
@Field(() => UserWhereUniqueInput, {nullable:true})
@Type(() => UserWhereUniqueInput)
connect?: UserWhereUniqueInput;
}

View File

@ -7,17 +7,16 @@ import { UserWhereUniqueInput } from './user-where-unique.input';
@InputType()
export class UserCreateNestedOneWithoutWorkspaceMemberInput {
@Field(() => UserCreateWithoutWorkspaceMemberInput, { nullable: true })
@Type(() => UserCreateWithoutWorkspaceMemberInput)
create?: UserCreateWithoutWorkspaceMemberInput;
@Field(() => UserCreateOrConnectWithoutWorkspaceMemberInput, {
nullable: true,
})
@Type(() => UserCreateOrConnectWithoutWorkspaceMemberInput)
connectOrCreate?: UserCreateOrConnectWithoutWorkspaceMemberInput;
@Field(() => UserCreateWithoutWorkspaceMemberInput, {nullable:true})
@Type(() => UserCreateWithoutWorkspaceMemberInput)
create?: UserCreateWithoutWorkspaceMemberInput;
@Field(() => UserWhereUniqueInput, { nullable: true })
@Type(() => UserWhereUniqueInput)
connect?: UserWhereUniqueInput;
@Field(() => UserCreateOrConnectWithoutWorkspaceMemberInput, {nullable:true})
@Type(() => UserCreateOrConnectWithoutWorkspaceMemberInput)
connectOrCreate?: UserCreateOrConnectWithoutWorkspaceMemberInput;
@Field(() => UserWhereUniqueInput, {nullable:true})
@Type(() => UserWhereUniqueInput)
connect?: UserWhereUniqueInput;
}

View File

@ -6,11 +6,12 @@ import { UserCreateWithoutCommentsInput } from './user-create-without-comments.i
@InputType()
export class UserCreateOrConnectWithoutCommentsInput {
@Field(() => UserWhereUniqueInput, { nullable: false })
@Type(() => UserWhereUniqueInput)
where!: UserWhereUniqueInput;
@Field(() => UserCreateWithoutCommentsInput, { nullable: false })
@Type(() => UserCreateWithoutCommentsInput)
create!: UserCreateWithoutCommentsInput;
@Field(() => UserWhereUniqueInput, {nullable:false})
@Type(() => UserWhereUniqueInput)
where!: UserWhereUniqueInput;
@Field(() => UserCreateWithoutCommentsInput, {nullable:false})
@Type(() => UserCreateWithoutCommentsInput)
create!: UserCreateWithoutCommentsInput;
}

View File

@ -6,11 +6,12 @@ import { UserCreateWithoutCompaniesInput } from './user-create-without-companies
@InputType()
export class UserCreateOrConnectWithoutCompaniesInput {
@Field(() => UserWhereUniqueInput, { nullable: false })
@Type(() => UserWhereUniqueInput)
where!: UserWhereUniqueInput;
@Field(() => UserCreateWithoutCompaniesInput, { nullable: false })
@Type(() => UserCreateWithoutCompaniesInput)
create!: UserCreateWithoutCompaniesInput;
@Field(() => UserWhereUniqueInput, {nullable:false})
@Type(() => UserWhereUniqueInput)
where!: UserWhereUniqueInput;
@Field(() => UserCreateWithoutCompaniesInput, {nullable:false})
@Type(() => UserCreateWithoutCompaniesInput)
create!: UserCreateWithoutCompaniesInput;
}

View File

@ -6,11 +6,12 @@ import { UserCreateWithoutRefreshTokensInput } from './user-create-without-refre
@InputType()
export class UserCreateOrConnectWithoutRefreshTokensInput {
@Field(() => UserWhereUniqueInput, { nullable: false })
@Type(() => UserWhereUniqueInput)
where!: UserWhereUniqueInput;
@Field(() => UserCreateWithoutRefreshTokensInput, { nullable: false })
@Type(() => UserCreateWithoutRefreshTokensInput)
create!: UserCreateWithoutRefreshTokensInput;
@Field(() => UserWhereUniqueInput, {nullable:false})
@Type(() => UserWhereUniqueInput)
where!: UserWhereUniqueInput;
@Field(() => UserCreateWithoutRefreshTokensInput, {nullable:false})
@Type(() => UserCreateWithoutRefreshTokensInput)
create!: UserCreateWithoutRefreshTokensInput;
}

View File

@ -6,11 +6,12 @@ import { UserCreateWithoutWorkspaceMemberInput } from './user-create-without-wor
@InputType()
export class UserCreateOrConnectWithoutWorkspaceMemberInput {
@Field(() => UserWhereUniqueInput, { nullable: false })
@Type(() => UserWhereUniqueInput)
where!: UserWhereUniqueInput;
@Field(() => UserCreateWithoutWorkspaceMemberInput, { nullable: false })
@Type(() => UserCreateWithoutWorkspaceMemberInput)
create!: UserCreateWithoutWorkspaceMemberInput;
@Field(() => UserWhereUniqueInput, {nullable:false})
@Type(() => UserWhereUniqueInput)
where!: UserWhereUniqueInput;
@Field(() => UserCreateWithoutWorkspaceMemberInput, {nullable:false})
@Type(() => UserCreateWithoutWorkspaceMemberInput)
create!: UserCreateWithoutWorkspaceMemberInput;
}

View File

@ -8,56 +8,55 @@ import { RefreshTokenCreateNestedManyWithoutUserInput } from '../refresh-token/r
@InputType()
export class UserCreateWithoutCommentsInput {
@Field(() => String, { nullable: true })
id?: string;
@Field(() => Date, { nullable: true })
createdAt?: Date | string;
@Field(() => String, {nullable:true})
id?: string;
@Field(() => Date, { nullable: true })
updatedAt?: Date | string;
@Field(() => Date, {nullable:true})
createdAt?: Date | string;
@Field(() => Date, { nullable: true })
deletedAt?: Date | string;
@Field(() => Date, {nullable:true})
updatedAt?: Date | string;
@Field(() => Date, { nullable: true })
lastSeen?: Date | string;
@Field(() => Date, {nullable:true})
deletedAt?: Date | string;
@Field(() => Boolean, { nullable: true })
disabled?: boolean;
@Field(() => Date, {nullable:true})
lastSeen?: Date | string;
@Field(() => String, { nullable: false })
displayName!: string;
@Field(() => Boolean, {nullable:true})
disabled?: boolean;
@Field(() => String, { nullable: false })
email!: string;
@Field(() => String, {nullable:false})
displayName!: string;
@Field(() => String, { nullable: true })
avatarUrl?: string;
@Field(() => String, {nullable:false})
email!: string;
@Field(() => String, { nullable: false })
locale!: string;
@Field(() => String, {nullable:true})
avatarUrl?: string;
@Field(() => String, { nullable: true })
phoneNumber?: string;
@Field(() => String, {nullable:false})
locale!: string;
@HideField()
passwordHash?: string;
@Field(() => String, {nullable:true})
phoneNumber?: string;
@Field(() => Boolean, { nullable: true })
emailVerified?: boolean;
@HideField()
passwordHash?: string;
@Field(() => GraphQLJSON, { nullable: true })
metadata?: any;
@Field(() => Boolean, {nullable:true})
emailVerified?: boolean;
@HideField()
workspaceMember?: WorkspaceMemberCreateNestedOneWithoutUserInput;
@Field(() => GraphQLJSON, {nullable:true})
metadata?: any;
@Field(() => CompanyCreateNestedManyWithoutAccountOwnerInput, {
nullable: true,
})
companies?: CompanyCreateNestedManyWithoutAccountOwnerInput;
@HideField()
workspaceMember?: WorkspaceMemberCreateNestedOneWithoutUserInput;
@HideField()
refreshTokens?: RefreshTokenCreateNestedManyWithoutUserInput;
@Field(() => CompanyCreateNestedManyWithoutAccountOwnerInput, {nullable:true})
companies?: CompanyCreateNestedManyWithoutAccountOwnerInput;
@HideField()
refreshTokens?: RefreshTokenCreateNestedManyWithoutUserInput;
}

View File

@ -8,54 +8,55 @@ import { CommentCreateNestedManyWithoutAuthorInput } from '../comment/comment-cr
@InputType()
export class UserCreateWithoutCompaniesInput {
@Field(() => String, { nullable: true })
id?: string;
@Field(() => Date, { nullable: true })
createdAt?: Date | string;
@Field(() => String, {nullable:true})
id?: string;
@Field(() => Date, { nullable: true })
updatedAt?: Date | string;
@Field(() => Date, {nullable:true})
createdAt?: Date | string;
@Field(() => Date, { nullable: true })
deletedAt?: Date | string;
@Field(() => Date, {nullable:true})
updatedAt?: Date | string;
@Field(() => Date, { nullable: true })
lastSeen?: Date | string;
@Field(() => Date, {nullable:true})
deletedAt?: Date | string;
@Field(() => Boolean, { nullable: true })
disabled?: boolean;
@Field(() => Date, {nullable:true})
lastSeen?: Date | string;
@Field(() => String, { nullable: false })
displayName!: string;
@Field(() => Boolean, {nullable:true})
disabled?: boolean;
@Field(() => String, { nullable: false })
email!: string;
@Field(() => String, {nullable:false})
displayName!: string;
@Field(() => String, { nullable: true })
avatarUrl?: string;
@Field(() => String, {nullable:false})
email!: string;
@Field(() => String, { nullable: false })
locale!: string;
@Field(() => String, {nullable:true})
avatarUrl?: string;
@Field(() => String, { nullable: true })
phoneNumber?: string;
@Field(() => String, {nullable:false})
locale!: string;
@HideField()
passwordHash?: string;
@Field(() => String, {nullable:true})
phoneNumber?: string;
@Field(() => Boolean, { nullable: true })
emailVerified?: boolean;
@HideField()
passwordHash?: string;
@Field(() => GraphQLJSON, { nullable: true })
metadata?: any;
@Field(() => Boolean, {nullable:true})
emailVerified?: boolean;
@HideField()
workspaceMember?: WorkspaceMemberCreateNestedOneWithoutUserInput;
@Field(() => GraphQLJSON, {nullable:true})
metadata?: any;
@HideField()
refreshTokens?: RefreshTokenCreateNestedManyWithoutUserInput;
@HideField()
workspaceMember?: WorkspaceMemberCreateNestedOneWithoutUserInput;
@Field(() => CommentCreateNestedManyWithoutAuthorInput, { nullable: true })
comments?: CommentCreateNestedManyWithoutAuthorInput;
@HideField()
refreshTokens?: RefreshTokenCreateNestedManyWithoutUserInput;
@Field(() => CommentCreateNestedManyWithoutAuthorInput, {nullable:true})
comments?: CommentCreateNestedManyWithoutAuthorInput;
}

View File

@ -8,56 +8,55 @@ import { CommentCreateNestedManyWithoutAuthorInput } from '../comment/comment-cr
@InputType()
export class UserCreateWithoutRefreshTokensInput {
@Field(() => String, { nullable: true })
id?: string;
@Field(() => Date, { nullable: true })
createdAt?: Date | string;
@Field(() => String, {nullable:true})
id?: string;
@Field(() => Date, { nullable: true })
updatedAt?: Date | string;
@Field(() => Date, {nullable:true})
createdAt?: Date | string;
@Field(() => Date, { nullable: true })
deletedAt?: Date | string;
@Field(() => Date, {nullable:true})
updatedAt?: Date | string;
@Field(() => Date, { nullable: true })
lastSeen?: Date | string;
@Field(() => Date, {nullable:true})
deletedAt?: Date | string;
@Field(() => Boolean, { nullable: true })
disabled?: boolean;
@Field(() => Date, {nullable:true})
lastSeen?: Date | string;
@Field(() => String, { nullable: false })
displayName!: string;
@Field(() => Boolean, {nullable:true})
disabled?: boolean;
@Field(() => String, { nullable: false })
email!: string;
@Field(() => String, {nullable:false})
displayName!: string;
@Field(() => String, { nullable: true })
avatarUrl?: string;
@Field(() => String, {nullable:false})
email!: string;
@Field(() => String, { nullable: false })
locale!: string;
@Field(() => String, {nullable:true})
avatarUrl?: string;
@Field(() => String, { nullable: true })
phoneNumber?: string;
@Field(() => String, {nullable:false})
locale!: string;
@HideField()
passwordHash?: string;
@Field(() => String, {nullable:true})
phoneNumber?: string;
@Field(() => Boolean, { nullable: true })
emailVerified?: boolean;
@HideField()
passwordHash?: string;
@Field(() => GraphQLJSON, { nullable: true })
metadata?: any;
@Field(() => Boolean, {nullable:true})
emailVerified?: boolean;
@HideField()
workspaceMember?: WorkspaceMemberCreateNestedOneWithoutUserInput;
@Field(() => GraphQLJSON, {nullable:true})
metadata?: any;
@Field(() => CompanyCreateNestedManyWithoutAccountOwnerInput, {
nullable: true,
})
companies?: CompanyCreateNestedManyWithoutAccountOwnerInput;
@HideField()
workspaceMember?: WorkspaceMemberCreateNestedOneWithoutUserInput;
@Field(() => CommentCreateNestedManyWithoutAuthorInput, { nullable: true })
comments?: CommentCreateNestedManyWithoutAuthorInput;
@Field(() => CompanyCreateNestedManyWithoutAccountOwnerInput, {nullable:true})
companies?: CompanyCreateNestedManyWithoutAccountOwnerInput;
@Field(() => CommentCreateNestedManyWithoutAuthorInput, {nullable:true})
comments?: CommentCreateNestedManyWithoutAuthorInput;
}

View File

@ -8,56 +8,55 @@ import { CommentCreateNestedManyWithoutAuthorInput } from '../comment/comment-cr
@InputType()
export class UserCreateWithoutWorkspaceMemberInput {
@Field(() => String, { nullable: true })
id?: string;
@Field(() => Date, { nullable: true })
createdAt?: Date | string;
@Field(() => String, {nullable:true})
id?: string;
@Field(() => Date, { nullable: true })
updatedAt?: Date | string;
@Field(() => Date, {nullable:true})
createdAt?: Date | string;
@Field(() => Date, { nullable: true })
deletedAt?: Date | string;
@Field(() => Date, {nullable:true})
updatedAt?: Date | string;
@Field(() => Date, { nullable: true })
lastSeen?: Date | string;
@Field(() => Date, {nullable:true})
deletedAt?: Date | string;
@Field(() => Boolean, { nullable: true })
disabled?: boolean;
@Field(() => Date, {nullable:true})
lastSeen?: Date | string;
@Field(() => String, { nullable: false })
displayName!: string;
@Field(() => Boolean, {nullable:true})
disabled?: boolean;
@Field(() => String, { nullable: false })
email!: string;
@Field(() => String, {nullable:false})
displayName!: string;
@Field(() => String, { nullable: true })
avatarUrl?: string;
@Field(() => String, {nullable:false})
email!: string;
@Field(() => String, { nullable: false })
locale!: string;
@Field(() => String, {nullable:true})
avatarUrl?: string;
@Field(() => String, { nullable: true })
phoneNumber?: string;
@Field(() => String, {nullable:false})
locale!: string;
@HideField()
passwordHash?: string;
@Field(() => String, {nullable:true})
phoneNumber?: string;
@Field(() => Boolean, { nullable: true })
emailVerified?: boolean;
@HideField()
passwordHash?: string;
@Field(() => GraphQLJSON, { nullable: true })
metadata?: any;
@Field(() => Boolean, {nullable:true})
emailVerified?: boolean;
@Field(() => CompanyCreateNestedManyWithoutAccountOwnerInput, {
nullable: true,
})
companies?: CompanyCreateNestedManyWithoutAccountOwnerInput;
@Field(() => GraphQLJSON, {nullable:true})
metadata?: any;
@HideField()
refreshTokens?: RefreshTokenCreateNestedManyWithoutUserInput;
@Field(() => CompanyCreateNestedManyWithoutAccountOwnerInput, {nullable:true})
companies?: CompanyCreateNestedManyWithoutAccountOwnerInput;
@Field(() => CommentCreateNestedManyWithoutAuthorInput, { nullable: true })
comments?: CommentCreateNestedManyWithoutAuthorInput;
@HideField()
refreshTokens?: RefreshTokenCreateNestedManyWithoutUserInput;
@Field(() => CommentCreateNestedManyWithoutAuthorInput, {nullable:true})
comments?: CommentCreateNestedManyWithoutAuthorInput;
}

View File

@ -9,59 +9,58 @@ import { CommentCreateNestedManyWithoutAuthorInput } from '../comment/comment-cr
@InputType()
export class UserCreateInput {
@Field(() => String, { nullable: true })
id?: string;
@Field(() => Date, { nullable: true })
createdAt?: Date | string;
@Field(() => String, {nullable:true})
id?: string;
@Field(() => Date, { nullable: true })
updatedAt?: Date | string;
@Field(() => Date, {nullable:true})
createdAt?: Date | string;
@Field(() => Date, { nullable: true })
deletedAt?: Date | string;
@Field(() => Date, {nullable:true})
updatedAt?: Date | string;
@Field(() => Date, { nullable: true })
lastSeen?: Date | string;
@Field(() => Date, {nullable:true})
deletedAt?: Date | string;
@Field(() => Boolean, { nullable: true })
disabled?: boolean;
@Field(() => Date, {nullable:true})
lastSeen?: Date | string;
@Field(() => String, { nullable: false })
displayName!: string;
@Field(() => Boolean, {nullable:true})
disabled?: boolean;
@Field(() => String, { nullable: false })
email!: string;
@Field(() => String, {nullable:false})
displayName!: string;
@Field(() => String, { nullable: true })
avatarUrl?: string;
@Field(() => String, {nullable:false})
email!: string;
@Field(() => String, { nullable: false })
locale!: string;
@Field(() => String, {nullable:true})
avatarUrl?: string;
@Field(() => String, { nullable: true })
phoneNumber?: string;
@Field(() => String, {nullable:false})
locale!: string;
@HideField()
passwordHash?: string;
@Field(() => String, {nullable:true})
phoneNumber?: string;
@Field(() => Boolean, { nullable: true })
emailVerified?: boolean;
@HideField()
passwordHash?: string;
@Field(() => GraphQLJSON, { nullable: true })
metadata?: any;
@Field(() => Boolean, {nullable:true})
emailVerified?: boolean;
@HideField()
workspaceMember?: WorkspaceMemberCreateNestedOneWithoutUserInput;
@Field(() => GraphQLJSON, {nullable:true})
metadata?: any;
@Field(() => CompanyCreateNestedManyWithoutAccountOwnerInput, {
nullable: true,
})
companies?: CompanyCreateNestedManyWithoutAccountOwnerInput;
@HideField()
workspaceMember?: WorkspaceMemberCreateNestedOneWithoutUserInput;
@HideField()
refreshTokens?: RefreshTokenCreateNestedManyWithoutUserInput;
@Field(() => CompanyCreateNestedManyWithoutAccountOwnerInput, {nullable:true})
companies?: CompanyCreateNestedManyWithoutAccountOwnerInput;
@Field(() => CommentCreateNestedManyWithoutAuthorInput, { nullable: true })
comments?: CommentCreateNestedManyWithoutAuthorInput;
@HideField()
refreshTokens?: RefreshTokenCreateNestedManyWithoutUserInput;
@Field(() => CommentCreateNestedManyWithoutAuthorInput, {nullable:true})
comments?: CommentCreateNestedManyWithoutAuthorInput;
}

View File

@ -12,31 +12,32 @@ import { UserMaxAggregateInput } from './user-max-aggregate.input';
@ArgsType()
export class UserGroupByArgs {
@Field(() => UserWhereInput, { nullable: true })
@Type(() => UserWhereInput)
where?: UserWhereInput;
@Field(() => [UserOrderByWithAggregationInput], { nullable: true })
orderBy?: Array<UserOrderByWithAggregationInput>;
@Field(() => UserWhereInput, {nullable:true})
@Type(() => UserWhereInput)
where?: UserWhereInput;
@Field(() => [UserScalarFieldEnum], { nullable: false })
by!: Array<keyof typeof UserScalarFieldEnum>;
@Field(() => [UserOrderByWithAggregationInput], {nullable:true})
orderBy?: Array<UserOrderByWithAggregationInput>;
@Field(() => UserScalarWhereWithAggregatesInput, { nullable: true })
having?: UserScalarWhereWithAggregatesInput;
@Field(() => [UserScalarFieldEnum], {nullable:false})
by!: Array<keyof typeof UserScalarFieldEnum>;
@Field(() => Int, { nullable: true })
take?: number;
@Field(() => UserScalarWhereWithAggregatesInput, {nullable:true})
having?: UserScalarWhereWithAggregatesInput;
@Field(() => Int, { nullable: true })
skip?: number;
@Field(() => Int, {nullable:true})
take?: number;
@Field(() => UserCountAggregateInput, { nullable: true })
_count?: UserCountAggregateInput;
@Field(() => Int, {nullable:true})
skip?: number;
@Field(() => UserMinAggregateInput, { nullable: true })
_min?: UserMinAggregateInput;
@Field(() => UserCountAggregateInput, {nullable:true})
_count?: UserCountAggregateInput;
@Field(() => UserMaxAggregateInput, { nullable: true })
_max?: UserMaxAggregateInput;
@Field(() => UserMinAggregateInput, {nullable:true})
_min?: UserMinAggregateInput;
@Field(() => UserMaxAggregateInput, {nullable:true})
_max?: UserMaxAggregateInput;
}

View File

@ -8,54 +8,55 @@ import { UserMaxAggregate } from './user-max-aggregate.output';
@ObjectType()
export class UserGroupBy {
@Field(() => String, { nullable: false })
id!: string;
@Field(() => Date, { nullable: false })
createdAt!: Date | string;
@Field(() => String, {nullable:false})
id!: string;
@Field(() => Date, { nullable: false })
updatedAt!: Date | string;
@Field(() => Date, {nullable:false})
createdAt!: Date | string;
@Field(() => Date, { nullable: true })
deletedAt?: Date | string;
@Field(() => Date, {nullable:false})
updatedAt!: Date | string;
@Field(() => Date, { nullable: true })
lastSeen?: Date | string;
@Field(() => Date, {nullable:true})
deletedAt?: Date | string;
@Field(() => Boolean, { nullable: false })
disabled!: boolean;
@Field(() => Date, {nullable:true})
lastSeen?: Date | string;
@Field(() => String, { nullable: false })
displayName!: string;
@Field(() => Boolean, {nullable:false})
disabled!: boolean;
@Field(() => String, { nullable: false })
email!: string;
@Field(() => String, {nullable:false})
displayName!: string;
@Field(() => String, { nullable: true })
avatarUrl?: string;
@Field(() => String, {nullable:false})
email!: string;
@Field(() => String, { nullable: false })
locale!: string;
@Field(() => String, {nullable:true})
avatarUrl?: string;
@Field(() => String, { nullable: true })
phoneNumber?: string;
@Field(() => String, {nullable:false})
locale!: string;
@HideField()
passwordHash?: string;
@Field(() => String, {nullable:true})
phoneNumber?: string;
@Field(() => Boolean, { nullable: false })
emailVerified!: boolean;
@HideField()
passwordHash?: string;
@Field(() => GraphQLJSON, { nullable: true })
metadata?: any;
@Field(() => Boolean, {nullable:false})
emailVerified!: boolean;
@Field(() => UserCountAggregate, { nullable: true })
_count?: UserCountAggregate;
@Field(() => GraphQLJSON, {nullable:true})
metadata?: any;
@Field(() => UserMinAggregate, { nullable: true })
_min?: UserMinAggregate;
@Field(() => UserCountAggregate, {nullable:true})
_count?: UserCountAggregate;
@Field(() => UserMaxAggregate, { nullable: true })
_max?: UserMaxAggregate;
@Field(() => UserMinAggregate, {nullable:true})
_min?: UserMinAggregate;
@Field(() => UserMaxAggregate, {nullable:true})
_max?: UserMaxAggregate;
}

View File

@ -4,42 +4,43 @@ import { HideField } from '@nestjs/graphql';
@InputType()
export class UserMaxAggregateInput {
@Field(() => Boolean, { nullable: true })
id?: true;
@Field(() => Boolean, { nullable: true })
createdAt?: true;
@Field(() => Boolean, {nullable:true})
id?: true;
@Field(() => Boolean, { nullable: true })
updatedAt?: true;
@Field(() => Boolean, {nullable:true})
createdAt?: true;
@Field(() => Boolean, { nullable: true })
deletedAt?: true;
@Field(() => Boolean, {nullable:true})
updatedAt?: true;
@Field(() => Boolean, { nullable: true })
lastSeen?: true;
@Field(() => Boolean, {nullable:true})
deletedAt?: true;
@Field(() => Boolean, { nullable: true })
disabled?: true;
@Field(() => Boolean, {nullable:true})
lastSeen?: true;
@Field(() => Boolean, { nullable: true })
displayName?: true;
@Field(() => Boolean, {nullable:true})
disabled?: true;
@Field(() => Boolean, { nullable: true })
email?: true;
@Field(() => Boolean, {nullable:true})
displayName?: true;
@Field(() => Boolean, { nullable: true })
avatarUrl?: true;
@Field(() => Boolean, {nullable:true})
email?: true;
@Field(() => Boolean, { nullable: true })
locale?: true;
@Field(() => Boolean, {nullable:true})
avatarUrl?: true;
@Field(() => Boolean, { nullable: true })
phoneNumber?: true;
@Field(() => Boolean, {nullable:true})
locale?: true;
@HideField()
passwordHash?: true;
@Field(() => Boolean, {nullable:true})
phoneNumber?: true;
@Field(() => Boolean, { nullable: true })
emailVerified?: true;
@HideField()
passwordHash?: true;
@Field(() => Boolean, {nullable:true})
emailVerified?: true;
}

View File

@ -4,42 +4,43 @@ import { HideField } from '@nestjs/graphql';
@ObjectType()
export class UserMaxAggregate {
@Field(() => String, { nullable: true })
id?: string;
@Field(() => Date, { nullable: true })
createdAt?: Date | string;
@Field(() => String, {nullable:true})
id?: string;
@Field(() => Date, { nullable: true })
updatedAt?: Date | string;
@Field(() => Date, {nullable:true})
createdAt?: Date | string;
@Field(() => Date, { nullable: true })
deletedAt?: Date | string;
@Field(() => Date, {nullable:true})
updatedAt?: Date | string;
@Field(() => Date, { nullable: true })
lastSeen?: Date | string;
@Field(() => Date, {nullable:true})
deletedAt?: Date | string;
@Field(() => Boolean, { nullable: true })
disabled?: boolean;
@Field(() => Date, {nullable:true})
lastSeen?: Date | string;
@Field(() => String, { nullable: true })
displayName?: string;
@Field(() => Boolean, {nullable:true})
disabled?: boolean;
@Field(() => String, { nullable: true })
email?: string;
@Field(() => String, {nullable:true})
displayName?: string;
@Field(() => String, { nullable: true })
avatarUrl?: string;
@Field(() => String, {nullable:true})
email?: string;
@Field(() => String, { nullable: true })
locale?: string;
@Field(() => String, {nullable:true})
avatarUrl?: string;
@Field(() => String, { nullable: true })
phoneNumber?: string;
@Field(() => String, {nullable:true})
locale?: string;
@HideField()
passwordHash?: string;
@Field(() => String, {nullable:true})
phoneNumber?: string;
@Field(() => Boolean, { nullable: true })
emailVerified?: boolean;
@HideField()
passwordHash?: string;
@Field(() => Boolean, {nullable:true})
emailVerified?: boolean;
}

View File

@ -5,42 +5,43 @@ import { HideField } from '@nestjs/graphql';
@InputType()
export class UserMaxOrderByAggregateInput {
@Field(() => SortOrder, { nullable: true })
id?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
createdAt?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
id?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
updatedAt?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
createdAt?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
deletedAt?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
updatedAt?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
lastSeen?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
deletedAt?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
disabled?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
lastSeen?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
displayName?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
disabled?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
email?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
displayName?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
avatarUrl?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
email?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
locale?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
avatarUrl?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
phoneNumber?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
locale?: keyof typeof SortOrder;
@HideField()
passwordHash?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
phoneNumber?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
emailVerified?: keyof typeof SortOrder;
@HideField()
passwordHash?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
emailVerified?: keyof typeof SortOrder;
}

View File

@ -4,42 +4,43 @@ import { HideField } from '@nestjs/graphql';
@InputType()
export class UserMinAggregateInput {
@Field(() => Boolean, { nullable: true })
id?: true;
@Field(() => Boolean, { nullable: true })
createdAt?: true;
@Field(() => Boolean, {nullable:true})
id?: true;
@Field(() => Boolean, { nullable: true })
updatedAt?: true;
@Field(() => Boolean, {nullable:true})
createdAt?: true;
@Field(() => Boolean, { nullable: true })
deletedAt?: true;
@Field(() => Boolean, {nullable:true})
updatedAt?: true;
@Field(() => Boolean, { nullable: true })
lastSeen?: true;
@Field(() => Boolean, {nullable:true})
deletedAt?: true;
@Field(() => Boolean, { nullable: true })
disabled?: true;
@Field(() => Boolean, {nullable:true})
lastSeen?: true;
@Field(() => Boolean, { nullable: true })
displayName?: true;
@Field(() => Boolean, {nullable:true})
disabled?: true;
@Field(() => Boolean, { nullable: true })
email?: true;
@Field(() => Boolean, {nullable:true})
displayName?: true;
@Field(() => Boolean, { nullable: true })
avatarUrl?: true;
@Field(() => Boolean, {nullable:true})
email?: true;
@Field(() => Boolean, { nullable: true })
locale?: true;
@Field(() => Boolean, {nullable:true})
avatarUrl?: true;
@Field(() => Boolean, { nullable: true })
phoneNumber?: true;
@Field(() => Boolean, {nullable:true})
locale?: true;
@HideField()
passwordHash?: true;
@Field(() => Boolean, {nullable:true})
phoneNumber?: true;
@Field(() => Boolean, { nullable: true })
emailVerified?: true;
@HideField()
passwordHash?: true;
@Field(() => Boolean, {nullable:true})
emailVerified?: true;
}

View File

@ -4,42 +4,43 @@ import { HideField } from '@nestjs/graphql';
@ObjectType()
export class UserMinAggregate {
@Field(() => String, { nullable: true })
id?: string;
@Field(() => Date, { nullable: true })
createdAt?: Date | string;
@Field(() => String, {nullable:true})
id?: string;
@Field(() => Date, { nullable: true })
updatedAt?: Date | string;
@Field(() => Date, {nullable:true})
createdAt?: Date | string;
@Field(() => Date, { nullable: true })
deletedAt?: Date | string;
@Field(() => Date, {nullable:true})
updatedAt?: Date | string;
@Field(() => Date, { nullable: true })
lastSeen?: Date | string;
@Field(() => Date, {nullable:true})
deletedAt?: Date | string;
@Field(() => Boolean, { nullable: true })
disabled?: boolean;
@Field(() => Date, {nullable:true})
lastSeen?: Date | string;
@Field(() => String, { nullable: true })
displayName?: string;
@Field(() => Boolean, {nullable:true})
disabled?: boolean;
@Field(() => String, { nullable: true })
email?: string;
@Field(() => String, {nullable:true})
displayName?: string;
@Field(() => String, { nullable: true })
avatarUrl?: string;
@Field(() => String, {nullable:true})
email?: string;
@Field(() => String, { nullable: true })
locale?: string;
@Field(() => String, {nullable:true})
avatarUrl?: string;
@Field(() => String, { nullable: true })
phoneNumber?: string;
@Field(() => String, {nullable:true})
locale?: string;
@HideField()
passwordHash?: string;
@Field(() => String, {nullable:true})
phoneNumber?: string;
@Field(() => Boolean, { nullable: true })
emailVerified?: boolean;
@HideField()
passwordHash?: string;
@Field(() => Boolean, {nullable:true})
emailVerified?: boolean;
}

View File

@ -5,42 +5,43 @@ import { HideField } from '@nestjs/graphql';
@InputType()
export class UserMinOrderByAggregateInput {
@Field(() => SortOrder, { nullable: true })
id?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
createdAt?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
id?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
updatedAt?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
createdAt?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
deletedAt?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
updatedAt?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
lastSeen?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
deletedAt?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
disabled?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
lastSeen?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
displayName?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
disabled?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
email?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
displayName?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
avatarUrl?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
email?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
locale?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
avatarUrl?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
phoneNumber?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
locale?: keyof typeof SortOrder;
@HideField()
passwordHash?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
phoneNumber?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
emailVerified?: keyof typeof SortOrder;
@HideField()
passwordHash?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
emailVerified?: keyof typeof SortOrder;
}

View File

@ -8,54 +8,55 @@ import { UserMinOrderByAggregateInput } from './user-min-order-by-aggregate.inpu
@InputType()
export class UserOrderByWithAggregationInput {
@Field(() => SortOrder, { nullable: true })
id?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
createdAt?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
id?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
updatedAt?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
createdAt?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
deletedAt?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
updatedAt?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
lastSeen?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
deletedAt?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
disabled?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
lastSeen?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
displayName?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
disabled?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
email?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
displayName?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
avatarUrl?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
email?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
locale?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
avatarUrl?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
phoneNumber?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
locale?: keyof typeof SortOrder;
@HideField()
passwordHash?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
phoneNumber?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
emailVerified?: keyof typeof SortOrder;
@HideField()
passwordHash?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
metadata?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
emailVerified?: keyof typeof SortOrder;
@Field(() => UserCountOrderByAggregateInput, { nullable: true })
_count?: UserCountOrderByAggregateInput;
@Field(() => SortOrder, {nullable:true})
metadata?: keyof typeof SortOrder;
@Field(() => UserMaxOrderByAggregateInput, { nullable: true })
_max?: UserMaxOrderByAggregateInput;
@Field(() => UserCountOrderByAggregateInput, {nullable:true})
_count?: UserCountOrderByAggregateInput;
@Field(() => UserMinOrderByAggregateInput, { nullable: true })
_min?: UserMinOrderByAggregateInput;
@Field(() => UserMaxOrderByAggregateInput, {nullable:true})
_max?: UserMaxOrderByAggregateInput;
@Field(() => UserMinOrderByAggregateInput, {nullable:true})
_min?: UserMinOrderByAggregateInput;
}

View File

@ -9,57 +9,58 @@ import { CommentOrderByRelationAggregateInput } from '../comment/comment-order-b
@InputType()
export class UserOrderByWithRelationInput {
@Field(() => SortOrder, { nullable: true })
id?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
createdAt?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
id?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
updatedAt?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
createdAt?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
deletedAt?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
updatedAt?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
lastSeen?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
deletedAt?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
disabled?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
lastSeen?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
displayName?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
disabled?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
email?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
displayName?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
avatarUrl?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
email?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
locale?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
avatarUrl?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
phoneNumber?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
locale?: keyof typeof SortOrder;
@HideField()
passwordHash?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
phoneNumber?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
emailVerified?: keyof typeof SortOrder;
@HideField()
passwordHash?: keyof typeof SortOrder;
@Field(() => SortOrder, { nullable: true })
metadata?: keyof typeof SortOrder;
@Field(() => SortOrder, {nullable:true})
emailVerified?: keyof typeof SortOrder;
@HideField()
workspaceMember?: WorkspaceMemberOrderByWithRelationInput;
@Field(() => SortOrder, {nullable:true})
metadata?: keyof typeof SortOrder;
@Field(() => CompanyOrderByRelationAggregateInput, { nullable: true })
companies?: CompanyOrderByRelationAggregateInput;
@HideField()
workspaceMember?: WorkspaceMemberOrderByWithRelationInput;
@HideField()
refreshTokens?: RefreshTokenOrderByRelationAggregateInput;
@Field(() => CompanyOrderByRelationAggregateInput, {nullable:true})
companies?: CompanyOrderByRelationAggregateInput;
@Field(() => CommentOrderByRelationAggregateInput, { nullable: true })
comments?: CommentOrderByRelationAggregateInput;
@HideField()
refreshTokens?: RefreshTokenOrderByRelationAggregateInput;
@Field(() => CommentOrderByRelationAggregateInput, {nullable:true})
comments?: CommentOrderByRelationAggregateInput;
}

View File

@ -4,9 +4,10 @@ import { UserWhereInput } from './user-where.input';
@InputType()
export class UserRelationFilter {
@Field(() => UserWhereInput, { nullable: true })
is?: UserWhereInput;
@Field(() => UserWhereInput, { nullable: true })
isNot?: UserWhereInput;
@Field(() => UserWhereInput, {nullable:true})
is?: UserWhereInput;
@Field(() => UserWhereInput, {nullable:true})
isNot?: UserWhereInput;
}

View File

@ -1,23 +1,21 @@
import { registerEnumType } from '@nestjs/graphql';
export enum UserScalarFieldEnum {
id = 'id',
createdAt = 'createdAt',
updatedAt = 'updatedAt',
deletedAt = 'deletedAt',
lastSeen = 'lastSeen',
disabled = 'disabled',
displayName = 'displayName',
email = 'email',
avatarUrl = 'avatarUrl',
locale = 'locale',
phoneNumber = 'phoneNumber',
passwordHash = 'passwordHash',
emailVerified = 'emailVerified',
metadata = 'metadata',
id = "id",
createdAt = "createdAt",
updatedAt = "updatedAt",
deletedAt = "deletedAt",
lastSeen = "lastSeen",
disabled = "disabled",
displayName = "displayName",
email = "email",
avatarUrl = "avatarUrl",
locale = "locale",
phoneNumber = "phoneNumber",
passwordHash = "passwordHash",
emailVerified = "emailVerified",
metadata = "metadata"
}
registerEnumType(UserScalarFieldEnum, {
name: 'UserScalarFieldEnum',
description: undefined,
});
registerEnumType(UserScalarFieldEnum, { name: 'UserScalarFieldEnum', description: undefined })

View File

@ -10,54 +10,55 @@ import { JsonNullableWithAggregatesFilter } from '../prisma/json-nullable-with-a
@InputType()
export class UserScalarWhereWithAggregatesInput {
@Field(() => [UserScalarWhereWithAggregatesInput], { nullable: true })
AND?: Array<UserScalarWhereWithAggregatesInput>;
@Field(() => [UserScalarWhereWithAggregatesInput], { nullable: true })
OR?: Array<UserScalarWhereWithAggregatesInput>;
@Field(() => [UserScalarWhereWithAggregatesInput], {nullable:true})
AND?: Array<UserScalarWhereWithAggregatesInput>;
@Field(() => [UserScalarWhereWithAggregatesInput], { nullable: true })
NOT?: Array<UserScalarWhereWithAggregatesInput>;
@Field(() => [UserScalarWhereWithAggregatesInput], {nullable:true})
OR?: Array<UserScalarWhereWithAggregatesInput>;
@Field(() => StringWithAggregatesFilter, { nullable: true })
id?: StringWithAggregatesFilter;
@Field(() => [UserScalarWhereWithAggregatesInput], {nullable:true})
NOT?: Array<UserScalarWhereWithAggregatesInput>;
@Field(() => DateTimeWithAggregatesFilter, { nullable: true })
createdAt?: DateTimeWithAggregatesFilter;
@Field(() => StringWithAggregatesFilter, {nullable:true})
id?: StringWithAggregatesFilter;
@Field(() => DateTimeWithAggregatesFilter, { nullable: true })
updatedAt?: DateTimeWithAggregatesFilter;
@Field(() => DateTimeWithAggregatesFilter, {nullable:true})
createdAt?: DateTimeWithAggregatesFilter;
@Field(() => DateTimeNullableWithAggregatesFilter, { nullable: true })
deletedAt?: DateTimeNullableWithAggregatesFilter;
@Field(() => DateTimeWithAggregatesFilter, {nullable:true})
updatedAt?: DateTimeWithAggregatesFilter;
@Field(() => DateTimeNullableWithAggregatesFilter, { nullable: true })
lastSeen?: DateTimeNullableWithAggregatesFilter;
@Field(() => DateTimeNullableWithAggregatesFilter, {nullable:true})
deletedAt?: DateTimeNullableWithAggregatesFilter;
@Field(() => BoolWithAggregatesFilter, { nullable: true })
disabled?: BoolWithAggregatesFilter;
@Field(() => DateTimeNullableWithAggregatesFilter, {nullable:true})
lastSeen?: DateTimeNullableWithAggregatesFilter;
@Field(() => StringWithAggregatesFilter, { nullable: true })
displayName?: StringWithAggregatesFilter;
@Field(() => BoolWithAggregatesFilter, {nullable:true})
disabled?: BoolWithAggregatesFilter;
@Field(() => StringWithAggregatesFilter, { nullable: true })
email?: StringWithAggregatesFilter;
@Field(() => StringWithAggregatesFilter, {nullable:true})
displayName?: StringWithAggregatesFilter;
@Field(() => StringNullableWithAggregatesFilter, { nullable: true })
avatarUrl?: StringNullableWithAggregatesFilter;
@Field(() => StringWithAggregatesFilter, {nullable:true})
email?: StringWithAggregatesFilter;
@Field(() => StringWithAggregatesFilter, { nullable: true })
locale?: StringWithAggregatesFilter;
@Field(() => StringNullableWithAggregatesFilter, {nullable:true})
avatarUrl?: StringNullableWithAggregatesFilter;
@Field(() => StringNullableWithAggregatesFilter, { nullable: true })
phoneNumber?: StringNullableWithAggregatesFilter;
@Field(() => StringWithAggregatesFilter, {nullable:true})
locale?: StringWithAggregatesFilter;
@HideField()
passwordHash?: StringNullableWithAggregatesFilter;
@Field(() => StringNullableWithAggregatesFilter, {nullable:true})
phoneNumber?: StringNullableWithAggregatesFilter;
@Field(() => BoolWithAggregatesFilter, { nullable: true })
emailVerified?: BoolWithAggregatesFilter;
@HideField()
passwordHash?: StringNullableWithAggregatesFilter;
@Field(() => JsonNullableWithAggregatesFilter, { nullable: true })
metadata?: JsonNullableWithAggregatesFilter;
@Field(() => BoolWithAggregatesFilter, {nullable:true})
emailVerified?: BoolWithAggregatesFilter;
@Field(() => JsonNullableWithAggregatesFilter, {nullable:true})
metadata?: JsonNullableWithAggregatesFilter;
}

View File

@ -8,56 +8,55 @@ import { RefreshTokenUncheckedCreateNestedManyWithoutUserInput } from '../refres
@InputType()
export class UserUncheckedCreateWithoutCommentsInput {
@Field(() => String, { nullable: true })
id?: string;
@Field(() => Date, { nullable: true })
createdAt?: Date | string;
@Field(() => String, {nullable:true})
id?: string;
@Field(() => Date, { nullable: true })
updatedAt?: Date | string;
@Field(() => Date, {nullable:true})
createdAt?: Date | string;
@Field(() => Date, { nullable: true })
deletedAt?: Date | string;
@Field(() => Date, {nullable:true})
updatedAt?: Date | string;
@Field(() => Date, { nullable: true })
lastSeen?: Date | string;
@Field(() => Date, {nullable:true})
deletedAt?: Date | string;
@Field(() => Boolean, { nullable: true })
disabled?: boolean;
@Field(() => Date, {nullable:true})
lastSeen?: Date | string;
@Field(() => String, { nullable: false })
displayName!: string;
@Field(() => Boolean, {nullable:true})
disabled?: boolean;
@Field(() => String, { nullable: false })
email!: string;
@Field(() => String, {nullable:false})
displayName!: string;
@Field(() => String, { nullable: true })
avatarUrl?: string;
@Field(() => String, {nullable:false})
email!: string;
@Field(() => String, { nullable: false })
locale!: string;
@Field(() => String, {nullable:true})
avatarUrl?: string;
@Field(() => String, { nullable: true })
phoneNumber?: string;
@Field(() => String, {nullable:false})
locale!: string;
@HideField()
passwordHash?: string;
@Field(() => String, {nullable:true})
phoneNumber?: string;
@Field(() => Boolean, { nullable: true })
emailVerified?: boolean;
@HideField()
passwordHash?: string;
@Field(() => GraphQLJSON, { nullable: true })
metadata?: any;
@Field(() => Boolean, {nullable:true})
emailVerified?: boolean;
@HideField()
workspaceMember?: WorkspaceMemberUncheckedCreateNestedOneWithoutUserInput;
@Field(() => GraphQLJSON, {nullable:true})
metadata?: any;
@Field(() => CompanyUncheckedCreateNestedManyWithoutAccountOwnerInput, {
nullable: true,
})
companies?: CompanyUncheckedCreateNestedManyWithoutAccountOwnerInput;
@HideField()
workspaceMember?: WorkspaceMemberUncheckedCreateNestedOneWithoutUserInput;
@HideField()
refreshTokens?: RefreshTokenUncheckedCreateNestedManyWithoutUserInput;
@Field(() => CompanyUncheckedCreateNestedManyWithoutAccountOwnerInput, {nullable:true})
companies?: CompanyUncheckedCreateNestedManyWithoutAccountOwnerInput;
@HideField()
refreshTokens?: RefreshTokenUncheckedCreateNestedManyWithoutUserInput;
}

View File

@ -8,56 +8,55 @@ import { CommentUncheckedCreateNestedManyWithoutAuthorInput } from '../comment/c
@InputType()
export class UserUncheckedCreateWithoutCompaniesInput {
@Field(() => String, { nullable: true })
id?: string;
@Field(() => Date, { nullable: true })
createdAt?: Date | string;
@Field(() => String, {nullable:true})
id?: string;
@Field(() => Date, { nullable: true })
updatedAt?: Date | string;
@Field(() => Date, {nullable:true})
createdAt?: Date | string;
@Field(() => Date, { nullable: true })
deletedAt?: Date | string;
@Field(() => Date, {nullable:true})
updatedAt?: Date | string;
@Field(() => Date, { nullable: true })
lastSeen?: Date | string;
@Field(() => Date, {nullable:true})
deletedAt?: Date | string;
@Field(() => Boolean, { nullable: true })
disabled?: boolean;
@Field(() => Date, {nullable:true})
lastSeen?: Date | string;
@Field(() => String, { nullable: false })
displayName!: string;
@Field(() => Boolean, {nullable:true})
disabled?: boolean;
@Field(() => String, { nullable: false })
email!: string;
@Field(() => String, {nullable:false})
displayName!: string;
@Field(() => String, { nullable: true })
avatarUrl?: string;
@Field(() => String, {nullable:false})
email!: string;
@Field(() => String, { nullable: false })
locale!: string;
@Field(() => String, {nullable:true})
avatarUrl?: string;
@Field(() => String, { nullable: true })
phoneNumber?: string;
@Field(() => String, {nullable:false})
locale!: string;
@HideField()
passwordHash?: string;
@Field(() => String, {nullable:true})
phoneNumber?: string;
@Field(() => Boolean, { nullable: true })
emailVerified?: boolean;
@HideField()
passwordHash?: string;
@Field(() => GraphQLJSON, { nullable: true })
metadata?: any;
@Field(() => Boolean, {nullable:true})
emailVerified?: boolean;
@HideField()
workspaceMember?: WorkspaceMemberUncheckedCreateNestedOneWithoutUserInput;
@Field(() => GraphQLJSON, {nullable:true})
metadata?: any;
@HideField()
refreshTokens?: RefreshTokenUncheckedCreateNestedManyWithoutUserInput;
@HideField()
workspaceMember?: WorkspaceMemberUncheckedCreateNestedOneWithoutUserInput;
@Field(() => CommentUncheckedCreateNestedManyWithoutAuthorInput, {
nullable: true,
})
comments?: CommentUncheckedCreateNestedManyWithoutAuthorInput;
@HideField()
refreshTokens?: RefreshTokenUncheckedCreateNestedManyWithoutUserInput;
@Field(() => CommentUncheckedCreateNestedManyWithoutAuthorInput, {nullable:true})
comments?: CommentUncheckedCreateNestedManyWithoutAuthorInput;
}

View File

@ -8,58 +8,55 @@ import { CommentUncheckedCreateNestedManyWithoutAuthorInput } from '../comment/c
@InputType()
export class UserUncheckedCreateWithoutRefreshTokensInput {
@Field(() => String, { nullable: true })
id?: string;
@Field(() => Date, { nullable: true })
createdAt?: Date | string;
@Field(() => String, {nullable:true})
id?: string;
@Field(() => Date, { nullable: true })
updatedAt?: Date | string;
@Field(() => Date, {nullable:true})
createdAt?: Date | string;
@Field(() => Date, { nullable: true })
deletedAt?: Date | string;
@Field(() => Date, {nullable:true})
updatedAt?: Date | string;
@Field(() => Date, { nullable: true })
lastSeen?: Date | string;
@Field(() => Date, {nullable:true})
deletedAt?: Date | string;
@Field(() => Boolean, { nullable: true })
disabled?: boolean;
@Field(() => Date, {nullable:true})
lastSeen?: Date | string;
@Field(() => String, { nullable: false })
displayName!: string;
@Field(() => Boolean, {nullable:true})
disabled?: boolean;
@Field(() => String, { nullable: false })
email!: string;
@Field(() => String, {nullable:false})
displayName!: string;
@Field(() => String, { nullable: true })
avatarUrl?: string;
@Field(() => String, {nullable:false})
email!: string;
@Field(() => String, { nullable: false })
locale!: string;
@Field(() => String, {nullable:true})
avatarUrl?: string;
@Field(() => String, { nullable: true })
phoneNumber?: string;
@Field(() => String, {nullable:false})
locale!: string;
@HideField()
passwordHash?: string;
@Field(() => String, {nullable:true})
phoneNumber?: string;
@Field(() => Boolean, { nullable: true })
emailVerified?: boolean;
@HideField()
passwordHash?: string;
@Field(() => GraphQLJSON, { nullable: true })
metadata?: any;
@Field(() => Boolean, {nullable:true})
emailVerified?: boolean;
@HideField()
workspaceMember?: WorkspaceMemberUncheckedCreateNestedOneWithoutUserInput;
@Field(() => GraphQLJSON, {nullable:true})
metadata?: any;
@Field(() => CompanyUncheckedCreateNestedManyWithoutAccountOwnerInput, {
nullable: true,
})
companies?: CompanyUncheckedCreateNestedManyWithoutAccountOwnerInput;
@HideField()
workspaceMember?: WorkspaceMemberUncheckedCreateNestedOneWithoutUserInput;
@Field(() => CommentUncheckedCreateNestedManyWithoutAuthorInput, {
nullable: true,
})
comments?: CommentUncheckedCreateNestedManyWithoutAuthorInput;
@Field(() => CompanyUncheckedCreateNestedManyWithoutAccountOwnerInput, {nullable:true})
companies?: CompanyUncheckedCreateNestedManyWithoutAccountOwnerInput;
@Field(() => CommentUncheckedCreateNestedManyWithoutAuthorInput, {nullable:true})
comments?: CommentUncheckedCreateNestedManyWithoutAuthorInput;
}

View File

@ -8,58 +8,55 @@ import { CommentUncheckedCreateNestedManyWithoutAuthorInput } from '../comment/c
@InputType()
export class UserUncheckedCreateWithoutWorkspaceMemberInput {
@Field(() => String, { nullable: true })
id?: string;
@Field(() => Date, { nullable: true })
createdAt?: Date | string;
@Field(() => String, {nullable:true})
id?: string;
@Field(() => Date, { nullable: true })
updatedAt?: Date | string;
@Field(() => Date, {nullable:true})
createdAt?: Date | string;
@Field(() => Date, { nullable: true })
deletedAt?: Date | string;
@Field(() => Date, {nullable:true})
updatedAt?: Date | string;
@Field(() => Date, { nullable: true })
lastSeen?: Date | string;
@Field(() => Date, {nullable:true})
deletedAt?: Date | string;
@Field(() => Boolean, { nullable: true })
disabled?: boolean;
@Field(() => Date, {nullable:true})
lastSeen?: Date | string;
@Field(() => String, { nullable: false })
displayName!: string;
@Field(() => Boolean, {nullable:true})
disabled?: boolean;
@Field(() => String, { nullable: false })
email!: string;
@Field(() => String, {nullable:false})
displayName!: string;
@Field(() => String, { nullable: true })
avatarUrl?: string;
@Field(() => String, {nullable:false})
email!: string;
@Field(() => String, { nullable: false })
locale!: string;
@Field(() => String, {nullable:true})
avatarUrl?: string;
@Field(() => String, { nullable: true })
phoneNumber?: string;
@Field(() => String, {nullable:false})
locale!: string;
@HideField()
passwordHash?: string;
@Field(() => String, {nullable:true})
phoneNumber?: string;
@Field(() => Boolean, { nullable: true })
emailVerified?: boolean;
@HideField()
passwordHash?: string;
@Field(() => GraphQLJSON, { nullable: true })
metadata?: any;
@Field(() => Boolean, {nullable:true})
emailVerified?: boolean;
@Field(() => CompanyUncheckedCreateNestedManyWithoutAccountOwnerInput, {
nullable: true,
})
companies?: CompanyUncheckedCreateNestedManyWithoutAccountOwnerInput;
@Field(() => GraphQLJSON, {nullable:true})
metadata?: any;
@HideField()
refreshTokens?: RefreshTokenUncheckedCreateNestedManyWithoutUserInput;
@Field(() => CompanyUncheckedCreateNestedManyWithoutAccountOwnerInput, {nullable:true})
companies?: CompanyUncheckedCreateNestedManyWithoutAccountOwnerInput;
@Field(() => CommentUncheckedCreateNestedManyWithoutAuthorInput, {
nullable: true,
})
comments?: CommentUncheckedCreateNestedManyWithoutAuthorInput;
@HideField()
refreshTokens?: RefreshTokenUncheckedCreateNestedManyWithoutUserInput;
@Field(() => CommentUncheckedCreateNestedManyWithoutAuthorInput, {nullable:true})
comments?: CommentUncheckedCreateNestedManyWithoutAuthorInput;
}

View File

@ -9,61 +9,58 @@ import { CommentUncheckedCreateNestedManyWithoutAuthorInput } from '../comment/c
@InputType()
export class UserUncheckedCreateInput {
@Field(() => String, { nullable: true })
id?: string;
@Field(() => Date, { nullable: true })
createdAt?: Date | string;
@Field(() => String, {nullable:true})
id?: string;
@Field(() => Date, { nullable: true })
updatedAt?: Date | string;
@Field(() => Date, {nullable:true})
createdAt?: Date | string;
@Field(() => Date, { nullable: true })
deletedAt?: Date | string;
@Field(() => Date, {nullable:true})
updatedAt?: Date | string;
@Field(() => Date, { nullable: true })
lastSeen?: Date | string;
@Field(() => Date, {nullable:true})
deletedAt?: Date | string;
@Field(() => Boolean, { nullable: true })
disabled?: boolean;
@Field(() => Date, {nullable:true})
lastSeen?: Date | string;
@Field(() => String, { nullable: false })
displayName!: string;
@Field(() => Boolean, {nullable:true})
disabled?: boolean;
@Field(() => String, { nullable: false })
email!: string;
@Field(() => String, {nullable:false})
displayName!: string;
@Field(() => String, { nullable: true })
avatarUrl?: string;
@Field(() => String, {nullable:false})
email!: string;
@Field(() => String, { nullable: false })
locale!: string;
@Field(() => String, {nullable:true})
avatarUrl?: string;
@Field(() => String, { nullable: true })
phoneNumber?: string;
@Field(() => String, {nullable:false})
locale!: string;
@HideField()
passwordHash?: string;
@Field(() => String, {nullable:true})
phoneNumber?: string;
@Field(() => Boolean, { nullable: true })
emailVerified?: boolean;
@HideField()
passwordHash?: string;
@Field(() => GraphQLJSON, { nullable: true })
metadata?: any;
@Field(() => Boolean, {nullable:true})
emailVerified?: boolean;
@HideField()
workspaceMember?: WorkspaceMemberUncheckedCreateNestedOneWithoutUserInput;
@Field(() => GraphQLJSON, {nullable:true})
metadata?: any;
@Field(() => CompanyUncheckedCreateNestedManyWithoutAccountOwnerInput, {
nullable: true,
})
companies?: CompanyUncheckedCreateNestedManyWithoutAccountOwnerInput;
@HideField()
workspaceMember?: WorkspaceMemberUncheckedCreateNestedOneWithoutUserInput;
@HideField()
refreshTokens?: RefreshTokenUncheckedCreateNestedManyWithoutUserInput;
@Field(() => CompanyUncheckedCreateNestedManyWithoutAccountOwnerInput, {nullable:true})
companies?: CompanyUncheckedCreateNestedManyWithoutAccountOwnerInput;
@Field(() => CommentUncheckedCreateNestedManyWithoutAuthorInput, {
nullable: true,
})
comments?: CommentUncheckedCreateNestedManyWithoutAuthorInput;
@HideField()
refreshTokens?: RefreshTokenUncheckedCreateNestedManyWithoutUserInput;
@Field(() => CommentUncheckedCreateNestedManyWithoutAuthorInput, {nullable:true})
comments?: CommentUncheckedCreateNestedManyWithoutAuthorInput;
}

View File

@ -10,45 +10,46 @@ import { GraphQLJSON } from 'graphql-type-json';
@InputType()
export class UserUncheckedUpdateManyInput {
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, { nullable: true })
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, { nullable: true })
lastSeen?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, {nullable:true})
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => BoolFieldUpdateOperationsInput, { nullable: true })
disabled?: BoolFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, {nullable:true})
lastSeen?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
displayName?: StringFieldUpdateOperationsInput;
@Field(() => BoolFieldUpdateOperationsInput, {nullable:true})
disabled?: BoolFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
email?: StringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
displayName?: StringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, { nullable: true })
avatarUrl?: NullableStringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
email?: StringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
locale?: StringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, {nullable:true})
avatarUrl?: NullableStringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, { nullable: true })
phoneNumber?: NullableStringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
locale?: StringFieldUpdateOperationsInput;
@HideField()
passwordHash?: NullableStringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, {nullable:true})
phoneNumber?: NullableStringFieldUpdateOperationsInput;
@Field(() => BoolFieldUpdateOperationsInput, { nullable: true })
emailVerified?: BoolFieldUpdateOperationsInput;
@HideField()
passwordHash?: NullableStringFieldUpdateOperationsInput;
@Field(() => GraphQLJSON, { nullable: true })
metadata?: any;
@Field(() => BoolFieldUpdateOperationsInput, {nullable:true})
emailVerified?: BoolFieldUpdateOperationsInput;
@Field(() => GraphQLJSON, {nullable:true})
metadata?: any;
}

View File

@ -13,56 +13,55 @@ import { RefreshTokenUncheckedUpdateManyWithoutUserNestedInput } from '../refres
@InputType()
export class UserUncheckedUpdateWithoutCommentsInput {
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, { nullable: true })
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, { nullable: true })
lastSeen?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, {nullable:true})
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => BoolFieldUpdateOperationsInput, { nullable: true })
disabled?: BoolFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, {nullable:true})
lastSeen?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
displayName?: StringFieldUpdateOperationsInput;
@Field(() => BoolFieldUpdateOperationsInput, {nullable:true})
disabled?: BoolFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
email?: StringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
displayName?: StringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, { nullable: true })
avatarUrl?: NullableStringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
email?: StringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
locale?: StringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, {nullable:true})
avatarUrl?: NullableStringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, { nullable: true })
phoneNumber?: NullableStringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
locale?: StringFieldUpdateOperationsInput;
@HideField()
passwordHash?: NullableStringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, {nullable:true})
phoneNumber?: NullableStringFieldUpdateOperationsInput;
@Field(() => BoolFieldUpdateOperationsInput, { nullable: true })
emailVerified?: BoolFieldUpdateOperationsInput;
@HideField()
passwordHash?: NullableStringFieldUpdateOperationsInput;
@Field(() => GraphQLJSON, { nullable: true })
metadata?: any;
@Field(() => BoolFieldUpdateOperationsInput, {nullable:true})
emailVerified?: BoolFieldUpdateOperationsInput;
@HideField()
workspaceMember?: WorkspaceMemberUncheckedUpdateOneWithoutUserNestedInput;
@Field(() => GraphQLJSON, {nullable:true})
metadata?: any;
@Field(() => CompanyUncheckedUpdateManyWithoutAccountOwnerNestedInput, {
nullable: true,
})
companies?: CompanyUncheckedUpdateManyWithoutAccountOwnerNestedInput;
@HideField()
workspaceMember?: WorkspaceMemberUncheckedUpdateOneWithoutUserNestedInput;
@HideField()
refreshTokens?: RefreshTokenUncheckedUpdateManyWithoutUserNestedInput;
@Field(() => CompanyUncheckedUpdateManyWithoutAccountOwnerNestedInput, {nullable:true})
companies?: CompanyUncheckedUpdateManyWithoutAccountOwnerNestedInput;
@HideField()
refreshTokens?: RefreshTokenUncheckedUpdateManyWithoutUserNestedInput;
}

View File

@ -13,56 +13,55 @@ import { CommentUncheckedUpdateManyWithoutAuthorNestedInput } from '../comment/c
@InputType()
export class UserUncheckedUpdateWithoutCompaniesInput {
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, { nullable: true })
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, { nullable: true })
lastSeen?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, {nullable:true})
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => BoolFieldUpdateOperationsInput, { nullable: true })
disabled?: BoolFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, {nullable:true})
lastSeen?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
displayName?: StringFieldUpdateOperationsInput;
@Field(() => BoolFieldUpdateOperationsInput, {nullable:true})
disabled?: BoolFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
email?: StringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
displayName?: StringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, { nullable: true })
avatarUrl?: NullableStringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
email?: StringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
locale?: StringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, {nullable:true})
avatarUrl?: NullableStringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, { nullable: true })
phoneNumber?: NullableStringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
locale?: StringFieldUpdateOperationsInput;
@HideField()
passwordHash?: NullableStringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, {nullable:true})
phoneNumber?: NullableStringFieldUpdateOperationsInput;
@Field(() => BoolFieldUpdateOperationsInput, { nullable: true })
emailVerified?: BoolFieldUpdateOperationsInput;
@HideField()
passwordHash?: NullableStringFieldUpdateOperationsInput;
@Field(() => GraphQLJSON, { nullable: true })
metadata?: any;
@Field(() => BoolFieldUpdateOperationsInput, {nullable:true})
emailVerified?: BoolFieldUpdateOperationsInput;
@HideField()
workspaceMember?: WorkspaceMemberUncheckedUpdateOneWithoutUserNestedInput;
@Field(() => GraphQLJSON, {nullable:true})
metadata?: any;
@HideField()
refreshTokens?: RefreshTokenUncheckedUpdateManyWithoutUserNestedInput;
@HideField()
workspaceMember?: WorkspaceMemberUncheckedUpdateOneWithoutUserNestedInput;
@Field(() => CommentUncheckedUpdateManyWithoutAuthorNestedInput, {
nullable: true,
})
comments?: CommentUncheckedUpdateManyWithoutAuthorNestedInput;
@HideField()
refreshTokens?: RefreshTokenUncheckedUpdateManyWithoutUserNestedInput;
@Field(() => CommentUncheckedUpdateManyWithoutAuthorNestedInput, {nullable:true})
comments?: CommentUncheckedUpdateManyWithoutAuthorNestedInput;
}

View File

@ -13,58 +13,55 @@ import { CommentUncheckedUpdateManyWithoutAuthorNestedInput } from '../comment/c
@InputType()
export class UserUncheckedUpdateWithoutRefreshTokensInput {
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, { nullable: true })
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, { nullable: true })
lastSeen?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, {nullable:true})
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => BoolFieldUpdateOperationsInput, { nullable: true })
disabled?: BoolFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, {nullable:true})
lastSeen?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
displayName?: StringFieldUpdateOperationsInput;
@Field(() => BoolFieldUpdateOperationsInput, {nullable:true})
disabled?: BoolFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
email?: StringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
displayName?: StringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, { nullable: true })
avatarUrl?: NullableStringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
email?: StringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
locale?: StringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, {nullable:true})
avatarUrl?: NullableStringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, { nullable: true })
phoneNumber?: NullableStringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
locale?: StringFieldUpdateOperationsInput;
@HideField()
passwordHash?: NullableStringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, {nullable:true})
phoneNumber?: NullableStringFieldUpdateOperationsInput;
@Field(() => BoolFieldUpdateOperationsInput, { nullable: true })
emailVerified?: BoolFieldUpdateOperationsInput;
@HideField()
passwordHash?: NullableStringFieldUpdateOperationsInput;
@Field(() => GraphQLJSON, { nullable: true })
metadata?: any;
@Field(() => BoolFieldUpdateOperationsInput, {nullable:true})
emailVerified?: BoolFieldUpdateOperationsInput;
@HideField()
workspaceMember?: WorkspaceMemberUncheckedUpdateOneWithoutUserNestedInput;
@Field(() => GraphQLJSON, {nullable:true})
metadata?: any;
@Field(() => CompanyUncheckedUpdateManyWithoutAccountOwnerNestedInput, {
nullable: true,
})
companies?: CompanyUncheckedUpdateManyWithoutAccountOwnerNestedInput;
@HideField()
workspaceMember?: WorkspaceMemberUncheckedUpdateOneWithoutUserNestedInput;
@Field(() => CommentUncheckedUpdateManyWithoutAuthorNestedInput, {
nullable: true,
})
comments?: CommentUncheckedUpdateManyWithoutAuthorNestedInput;
@Field(() => CompanyUncheckedUpdateManyWithoutAccountOwnerNestedInput, {nullable:true})
companies?: CompanyUncheckedUpdateManyWithoutAccountOwnerNestedInput;
@Field(() => CommentUncheckedUpdateManyWithoutAuthorNestedInput, {nullable:true})
comments?: CommentUncheckedUpdateManyWithoutAuthorNestedInput;
}

View File

@ -13,58 +13,55 @@ import { CommentUncheckedUpdateManyWithoutAuthorNestedInput } from '../comment/c
@InputType()
export class UserUncheckedUpdateWithoutWorkspaceMemberInput {
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, { nullable: true })
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, { nullable: true })
lastSeen?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, {nullable:true})
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => BoolFieldUpdateOperationsInput, { nullable: true })
disabled?: BoolFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, {nullable:true})
lastSeen?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
displayName?: StringFieldUpdateOperationsInput;
@Field(() => BoolFieldUpdateOperationsInput, {nullable:true})
disabled?: BoolFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
email?: StringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
displayName?: StringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, { nullable: true })
avatarUrl?: NullableStringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
email?: StringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
locale?: StringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, {nullable:true})
avatarUrl?: NullableStringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, { nullable: true })
phoneNumber?: NullableStringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
locale?: StringFieldUpdateOperationsInput;
@HideField()
passwordHash?: NullableStringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, {nullable:true})
phoneNumber?: NullableStringFieldUpdateOperationsInput;
@Field(() => BoolFieldUpdateOperationsInput, { nullable: true })
emailVerified?: BoolFieldUpdateOperationsInput;
@HideField()
passwordHash?: NullableStringFieldUpdateOperationsInput;
@Field(() => GraphQLJSON, { nullable: true })
metadata?: any;
@Field(() => BoolFieldUpdateOperationsInput, {nullable:true})
emailVerified?: BoolFieldUpdateOperationsInput;
@Field(() => CompanyUncheckedUpdateManyWithoutAccountOwnerNestedInput, {
nullable: true,
})
companies?: CompanyUncheckedUpdateManyWithoutAccountOwnerNestedInput;
@Field(() => GraphQLJSON, {nullable:true})
metadata?: any;
@HideField()
refreshTokens?: RefreshTokenUncheckedUpdateManyWithoutUserNestedInput;
@Field(() => CompanyUncheckedUpdateManyWithoutAccountOwnerNestedInput, {nullable:true})
companies?: CompanyUncheckedUpdateManyWithoutAccountOwnerNestedInput;
@Field(() => CommentUncheckedUpdateManyWithoutAuthorNestedInput, {
nullable: true,
})
comments?: CommentUncheckedUpdateManyWithoutAuthorNestedInput;
@HideField()
refreshTokens?: RefreshTokenUncheckedUpdateManyWithoutUserNestedInput;
@Field(() => CommentUncheckedUpdateManyWithoutAuthorNestedInput, {nullable:true})
comments?: CommentUncheckedUpdateManyWithoutAuthorNestedInput;
}

View File

@ -14,61 +14,58 @@ import { CommentUncheckedUpdateManyWithoutAuthorNestedInput } from '../comment/c
@InputType()
export class UserUncheckedUpdateInput {
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, { nullable: true })
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, { nullable: true })
lastSeen?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, {nullable:true})
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => BoolFieldUpdateOperationsInput, { nullable: true })
disabled?: BoolFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, {nullable:true})
lastSeen?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
displayName?: StringFieldUpdateOperationsInput;
@Field(() => BoolFieldUpdateOperationsInput, {nullable:true})
disabled?: BoolFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
email?: StringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
displayName?: StringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, { nullable: true })
avatarUrl?: NullableStringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
email?: StringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
locale?: StringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, {nullable:true})
avatarUrl?: NullableStringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, { nullable: true })
phoneNumber?: NullableStringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
locale?: StringFieldUpdateOperationsInput;
@HideField()
passwordHash?: NullableStringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, {nullable:true})
phoneNumber?: NullableStringFieldUpdateOperationsInput;
@Field(() => BoolFieldUpdateOperationsInput, { nullable: true })
emailVerified?: BoolFieldUpdateOperationsInput;
@HideField()
passwordHash?: NullableStringFieldUpdateOperationsInput;
@Field(() => GraphQLJSON, { nullable: true })
metadata?: any;
@Field(() => BoolFieldUpdateOperationsInput, {nullable:true})
emailVerified?: BoolFieldUpdateOperationsInput;
@HideField()
workspaceMember?: WorkspaceMemberUncheckedUpdateOneWithoutUserNestedInput;
@Field(() => GraphQLJSON, {nullable:true})
metadata?: any;
@Field(() => CompanyUncheckedUpdateManyWithoutAccountOwnerNestedInput, {
nullable: true,
})
companies?: CompanyUncheckedUpdateManyWithoutAccountOwnerNestedInput;
@HideField()
workspaceMember?: WorkspaceMemberUncheckedUpdateOneWithoutUserNestedInput;
@HideField()
refreshTokens?: RefreshTokenUncheckedUpdateManyWithoutUserNestedInput;
@Field(() => CompanyUncheckedUpdateManyWithoutAccountOwnerNestedInput, {nullable:true})
companies?: CompanyUncheckedUpdateManyWithoutAccountOwnerNestedInput;
@Field(() => CommentUncheckedUpdateManyWithoutAuthorNestedInput, {
nullable: true,
})
comments?: CommentUncheckedUpdateManyWithoutAuthorNestedInput;
@HideField()
refreshTokens?: RefreshTokenUncheckedUpdateManyWithoutUserNestedInput;
@Field(() => CommentUncheckedUpdateManyWithoutAuthorNestedInput, {nullable:true})
comments?: CommentUncheckedUpdateManyWithoutAuthorNestedInput;
}

View File

@ -10,45 +10,46 @@ import { GraphQLJSON } from 'graphql-type-json';
@InputType()
export class UserUpdateManyMutationInput {
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, { nullable: true })
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, { nullable: true })
lastSeen?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, {nullable:true})
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => BoolFieldUpdateOperationsInput, { nullable: true })
disabled?: BoolFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, {nullable:true})
lastSeen?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
displayName?: StringFieldUpdateOperationsInput;
@Field(() => BoolFieldUpdateOperationsInput, {nullable:true})
disabled?: BoolFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
email?: StringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
displayName?: StringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, { nullable: true })
avatarUrl?: NullableStringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
email?: StringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
locale?: StringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, {nullable:true})
avatarUrl?: NullableStringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, { nullable: true })
phoneNumber?: NullableStringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
locale?: StringFieldUpdateOperationsInput;
@HideField()
passwordHash?: NullableStringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, {nullable:true})
phoneNumber?: NullableStringFieldUpdateOperationsInput;
@Field(() => BoolFieldUpdateOperationsInput, { nullable: true })
emailVerified?: BoolFieldUpdateOperationsInput;
@HideField()
passwordHash?: NullableStringFieldUpdateOperationsInput;
@Field(() => GraphQLJSON, { nullable: true })
metadata?: any;
@Field(() => BoolFieldUpdateOperationsInput, {nullable:true})
emailVerified?: BoolFieldUpdateOperationsInput;
@Field(() => GraphQLJSON, {nullable:true})
metadata?: any;
}

View File

@ -9,23 +9,24 @@ import { UserUpdateWithoutCommentsInput } from './user-update-without-comments.i
@InputType()
export class UserUpdateOneRequiredWithoutCommentsNestedInput {
@Field(() => UserCreateWithoutCommentsInput, { nullable: true })
@Type(() => UserCreateWithoutCommentsInput)
create?: UserCreateWithoutCommentsInput;
@Field(() => UserCreateOrConnectWithoutCommentsInput, { nullable: true })
@Type(() => UserCreateOrConnectWithoutCommentsInput)
connectOrCreate?: UserCreateOrConnectWithoutCommentsInput;
@Field(() => UserCreateWithoutCommentsInput, {nullable:true})
@Type(() => UserCreateWithoutCommentsInput)
create?: UserCreateWithoutCommentsInput;
@Field(() => UserUpsertWithoutCommentsInput, { nullable: true })
@Type(() => UserUpsertWithoutCommentsInput)
upsert?: UserUpsertWithoutCommentsInput;
@Field(() => UserCreateOrConnectWithoutCommentsInput, {nullable:true})
@Type(() => UserCreateOrConnectWithoutCommentsInput)
connectOrCreate?: UserCreateOrConnectWithoutCommentsInput;
@Field(() => UserWhereUniqueInput, { nullable: true })
@Type(() => UserWhereUniqueInput)
connect?: UserWhereUniqueInput;
@Field(() => UserUpsertWithoutCommentsInput, {nullable:true})
@Type(() => UserUpsertWithoutCommentsInput)
upsert?: UserUpsertWithoutCommentsInput;
@Field(() => UserUpdateWithoutCommentsInput, { nullable: true })
@Type(() => UserUpdateWithoutCommentsInput)
update?: UserUpdateWithoutCommentsInput;
@Field(() => UserWhereUniqueInput, {nullable:true})
@Type(() => UserWhereUniqueInput)
connect?: UserWhereUniqueInput;
@Field(() => UserUpdateWithoutCommentsInput, {nullable:true})
@Type(() => UserUpdateWithoutCommentsInput)
update?: UserUpdateWithoutCommentsInput;
}

View File

@ -9,23 +9,24 @@ import { UserUpdateWithoutRefreshTokensInput } from './user-update-without-refre
@InputType()
export class UserUpdateOneRequiredWithoutRefreshTokensNestedInput {
@Field(() => UserCreateWithoutRefreshTokensInput, { nullable: true })
@Type(() => UserCreateWithoutRefreshTokensInput)
create?: UserCreateWithoutRefreshTokensInput;
@Field(() => UserCreateOrConnectWithoutRefreshTokensInput, { nullable: true })
@Type(() => UserCreateOrConnectWithoutRefreshTokensInput)
connectOrCreate?: UserCreateOrConnectWithoutRefreshTokensInput;
@Field(() => UserCreateWithoutRefreshTokensInput, {nullable:true})
@Type(() => UserCreateWithoutRefreshTokensInput)
create?: UserCreateWithoutRefreshTokensInput;
@Field(() => UserUpsertWithoutRefreshTokensInput, { nullable: true })
@Type(() => UserUpsertWithoutRefreshTokensInput)
upsert?: UserUpsertWithoutRefreshTokensInput;
@Field(() => UserCreateOrConnectWithoutRefreshTokensInput, {nullable:true})
@Type(() => UserCreateOrConnectWithoutRefreshTokensInput)
connectOrCreate?: UserCreateOrConnectWithoutRefreshTokensInput;
@Field(() => UserWhereUniqueInput, { nullable: true })
@Type(() => UserWhereUniqueInput)
connect?: UserWhereUniqueInput;
@Field(() => UserUpsertWithoutRefreshTokensInput, {nullable:true})
@Type(() => UserUpsertWithoutRefreshTokensInput)
upsert?: UserUpsertWithoutRefreshTokensInput;
@Field(() => UserUpdateWithoutRefreshTokensInput, { nullable: true })
@Type(() => UserUpdateWithoutRefreshTokensInput)
update?: UserUpdateWithoutRefreshTokensInput;
@Field(() => UserWhereUniqueInput, {nullable:true})
@Type(() => UserWhereUniqueInput)
connect?: UserWhereUniqueInput;
@Field(() => UserUpdateWithoutRefreshTokensInput, {nullable:true})
@Type(() => UserUpdateWithoutRefreshTokensInput)
update?: UserUpdateWithoutRefreshTokensInput;
}

View File

@ -9,25 +9,24 @@ import { UserUpdateWithoutWorkspaceMemberInput } from './user-update-without-wor
@InputType()
export class UserUpdateOneRequiredWithoutWorkspaceMemberNestedInput {
@Field(() => UserCreateWithoutWorkspaceMemberInput, { nullable: true })
@Type(() => UserCreateWithoutWorkspaceMemberInput)
create?: UserCreateWithoutWorkspaceMemberInput;
@Field(() => UserCreateOrConnectWithoutWorkspaceMemberInput, {
nullable: true,
})
@Type(() => UserCreateOrConnectWithoutWorkspaceMemberInput)
connectOrCreate?: UserCreateOrConnectWithoutWorkspaceMemberInput;
@Field(() => UserCreateWithoutWorkspaceMemberInput, {nullable:true})
@Type(() => UserCreateWithoutWorkspaceMemberInput)
create?: UserCreateWithoutWorkspaceMemberInput;
@Field(() => UserUpsertWithoutWorkspaceMemberInput, { nullable: true })
@Type(() => UserUpsertWithoutWorkspaceMemberInput)
upsert?: UserUpsertWithoutWorkspaceMemberInput;
@Field(() => UserCreateOrConnectWithoutWorkspaceMemberInput, {nullable:true})
@Type(() => UserCreateOrConnectWithoutWorkspaceMemberInput)
connectOrCreate?: UserCreateOrConnectWithoutWorkspaceMemberInput;
@Field(() => UserWhereUniqueInput, { nullable: true })
@Type(() => UserWhereUniqueInput)
connect?: UserWhereUniqueInput;
@Field(() => UserUpsertWithoutWorkspaceMemberInput, {nullable:true})
@Type(() => UserUpsertWithoutWorkspaceMemberInput)
upsert?: UserUpsertWithoutWorkspaceMemberInput;
@Field(() => UserUpdateWithoutWorkspaceMemberInput, { nullable: true })
@Type(() => UserUpdateWithoutWorkspaceMemberInput)
update?: UserUpdateWithoutWorkspaceMemberInput;
@Field(() => UserWhereUniqueInput, {nullable:true})
@Type(() => UserWhereUniqueInput)
connect?: UserWhereUniqueInput;
@Field(() => UserUpdateWithoutWorkspaceMemberInput, {nullable:true})
@Type(() => UserUpdateWithoutWorkspaceMemberInput)
update?: UserUpdateWithoutWorkspaceMemberInput;
}

View File

@ -10,25 +10,26 @@ import { UserUpdateWithoutCompaniesInput } from './user-update-without-companies
@InputType()
export class UserUpdateOneWithoutCompaniesNestedInput {
@HideField()
create?: UserCreateWithoutCompaniesInput;
@HideField()
connectOrCreate?: UserCreateOrConnectWithoutCompaniesInput;
@HideField()
create?: UserCreateWithoutCompaniesInput;
@HideField()
upsert?: UserUpsertWithoutCompaniesInput;
@HideField()
connectOrCreate?: UserCreateOrConnectWithoutCompaniesInput;
@HideField()
disconnect?: boolean;
@HideField()
upsert?: UserUpsertWithoutCompaniesInput;
@HideField()
delete?: boolean;
@HideField()
disconnect?: boolean;
@Field(() => UserWhereUniqueInput, { nullable: true })
@Type(() => UserWhereUniqueInput)
connect?: UserWhereUniqueInput;
@HideField()
delete?: boolean;
@HideField()
update?: UserUpdateWithoutCompaniesInput;
@Field(() => UserWhereUniqueInput, {nullable:true})
@Type(() => UserWhereUniqueInput)
connect?: UserWhereUniqueInput;
@HideField()
update?: UserUpdateWithoutCompaniesInput;
}

View File

@ -13,56 +13,55 @@ import { RefreshTokenUpdateManyWithoutUserNestedInput } from '../refresh-token/r
@InputType()
export class UserUpdateWithoutCommentsInput {
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, { nullable: true })
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, { nullable: true })
lastSeen?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, {nullable:true})
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => BoolFieldUpdateOperationsInput, { nullable: true })
disabled?: BoolFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, {nullable:true})
lastSeen?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
displayName?: StringFieldUpdateOperationsInput;
@Field(() => BoolFieldUpdateOperationsInput, {nullable:true})
disabled?: BoolFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
email?: StringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
displayName?: StringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, { nullable: true })
avatarUrl?: NullableStringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
email?: StringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
locale?: StringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, {nullable:true})
avatarUrl?: NullableStringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, { nullable: true })
phoneNumber?: NullableStringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
locale?: StringFieldUpdateOperationsInput;
@HideField()
passwordHash?: NullableStringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, {nullable:true})
phoneNumber?: NullableStringFieldUpdateOperationsInput;
@Field(() => BoolFieldUpdateOperationsInput, { nullable: true })
emailVerified?: BoolFieldUpdateOperationsInput;
@HideField()
passwordHash?: NullableStringFieldUpdateOperationsInput;
@Field(() => GraphQLJSON, { nullable: true })
metadata?: any;
@Field(() => BoolFieldUpdateOperationsInput, {nullable:true})
emailVerified?: BoolFieldUpdateOperationsInput;
@HideField()
workspaceMember?: WorkspaceMemberUpdateOneWithoutUserNestedInput;
@Field(() => GraphQLJSON, {nullable:true})
metadata?: any;
@Field(() => CompanyUpdateManyWithoutAccountOwnerNestedInput, {
nullable: true,
})
companies?: CompanyUpdateManyWithoutAccountOwnerNestedInput;
@HideField()
workspaceMember?: WorkspaceMemberUpdateOneWithoutUserNestedInput;
@HideField()
refreshTokens?: RefreshTokenUpdateManyWithoutUserNestedInput;
@Field(() => CompanyUpdateManyWithoutAccountOwnerNestedInput, {nullable:true})
companies?: CompanyUpdateManyWithoutAccountOwnerNestedInput;
@HideField()
refreshTokens?: RefreshTokenUpdateManyWithoutUserNestedInput;
}

View File

@ -13,54 +13,55 @@ import { CommentUpdateManyWithoutAuthorNestedInput } from '../comment/comment-up
@InputType()
export class UserUpdateWithoutCompaniesInput {
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, { nullable: true })
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, { nullable: true })
lastSeen?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, {nullable:true})
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => BoolFieldUpdateOperationsInput, { nullable: true })
disabled?: BoolFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, {nullable:true})
lastSeen?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
displayName?: StringFieldUpdateOperationsInput;
@Field(() => BoolFieldUpdateOperationsInput, {nullable:true})
disabled?: BoolFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
email?: StringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
displayName?: StringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, { nullable: true })
avatarUrl?: NullableStringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
email?: StringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
locale?: StringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, {nullable:true})
avatarUrl?: NullableStringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, { nullable: true })
phoneNumber?: NullableStringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
locale?: StringFieldUpdateOperationsInput;
@HideField()
passwordHash?: NullableStringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, {nullable:true})
phoneNumber?: NullableStringFieldUpdateOperationsInput;
@Field(() => BoolFieldUpdateOperationsInput, { nullable: true })
emailVerified?: BoolFieldUpdateOperationsInput;
@HideField()
passwordHash?: NullableStringFieldUpdateOperationsInput;
@Field(() => GraphQLJSON, { nullable: true })
metadata?: any;
@Field(() => BoolFieldUpdateOperationsInput, {nullable:true})
emailVerified?: BoolFieldUpdateOperationsInput;
@HideField()
workspaceMember?: WorkspaceMemberUpdateOneWithoutUserNestedInput;
@Field(() => GraphQLJSON, {nullable:true})
metadata?: any;
@HideField()
refreshTokens?: RefreshTokenUpdateManyWithoutUserNestedInput;
@HideField()
workspaceMember?: WorkspaceMemberUpdateOneWithoutUserNestedInput;
@Field(() => CommentUpdateManyWithoutAuthorNestedInput, { nullable: true })
comments?: CommentUpdateManyWithoutAuthorNestedInput;
@HideField()
refreshTokens?: RefreshTokenUpdateManyWithoutUserNestedInput;
@Field(() => CommentUpdateManyWithoutAuthorNestedInput, {nullable:true})
comments?: CommentUpdateManyWithoutAuthorNestedInput;
}

View File

@ -13,56 +13,55 @@ import { CommentUpdateManyWithoutAuthorNestedInput } from '../comment/comment-up
@InputType()
export class UserUpdateWithoutRefreshTokensInput {
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, { nullable: true })
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, { nullable: true })
lastSeen?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, {nullable:true})
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => BoolFieldUpdateOperationsInput, { nullable: true })
disabled?: BoolFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, {nullable:true})
lastSeen?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
displayName?: StringFieldUpdateOperationsInput;
@Field(() => BoolFieldUpdateOperationsInput, {nullable:true})
disabled?: BoolFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
email?: StringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
displayName?: StringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, { nullable: true })
avatarUrl?: NullableStringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
email?: StringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
locale?: StringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, {nullable:true})
avatarUrl?: NullableStringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, { nullable: true })
phoneNumber?: NullableStringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
locale?: StringFieldUpdateOperationsInput;
@HideField()
passwordHash?: NullableStringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, {nullable:true})
phoneNumber?: NullableStringFieldUpdateOperationsInput;
@Field(() => BoolFieldUpdateOperationsInput, { nullable: true })
emailVerified?: BoolFieldUpdateOperationsInput;
@HideField()
passwordHash?: NullableStringFieldUpdateOperationsInput;
@Field(() => GraphQLJSON, { nullable: true })
metadata?: any;
@Field(() => BoolFieldUpdateOperationsInput, {nullable:true})
emailVerified?: BoolFieldUpdateOperationsInput;
@HideField()
workspaceMember?: WorkspaceMemberUpdateOneWithoutUserNestedInput;
@Field(() => GraphQLJSON, {nullable:true})
metadata?: any;
@Field(() => CompanyUpdateManyWithoutAccountOwnerNestedInput, {
nullable: true,
})
companies?: CompanyUpdateManyWithoutAccountOwnerNestedInput;
@HideField()
workspaceMember?: WorkspaceMemberUpdateOneWithoutUserNestedInput;
@Field(() => CommentUpdateManyWithoutAuthorNestedInput, { nullable: true })
comments?: CommentUpdateManyWithoutAuthorNestedInput;
@Field(() => CompanyUpdateManyWithoutAccountOwnerNestedInput, {nullable:true})
companies?: CompanyUpdateManyWithoutAccountOwnerNestedInput;
@Field(() => CommentUpdateManyWithoutAuthorNestedInput, {nullable:true})
comments?: CommentUpdateManyWithoutAuthorNestedInput;
}

View File

@ -13,56 +13,55 @@ import { CommentUpdateManyWithoutAuthorNestedInput } from '../comment/comment-up
@InputType()
export class UserUpdateWithoutWorkspaceMemberInput {
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, { nullable: true })
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, { nullable: true })
lastSeen?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, {nullable:true})
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => BoolFieldUpdateOperationsInput, { nullable: true })
disabled?: BoolFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, {nullable:true})
lastSeen?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
displayName?: StringFieldUpdateOperationsInput;
@Field(() => BoolFieldUpdateOperationsInput, {nullable:true})
disabled?: BoolFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
email?: StringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
displayName?: StringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, { nullable: true })
avatarUrl?: NullableStringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
email?: StringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
locale?: StringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, {nullable:true})
avatarUrl?: NullableStringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, { nullable: true })
phoneNumber?: NullableStringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
locale?: StringFieldUpdateOperationsInput;
@HideField()
passwordHash?: NullableStringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, {nullable:true})
phoneNumber?: NullableStringFieldUpdateOperationsInput;
@Field(() => BoolFieldUpdateOperationsInput, { nullable: true })
emailVerified?: BoolFieldUpdateOperationsInput;
@HideField()
passwordHash?: NullableStringFieldUpdateOperationsInput;
@Field(() => GraphQLJSON, { nullable: true })
metadata?: any;
@Field(() => BoolFieldUpdateOperationsInput, {nullable:true})
emailVerified?: BoolFieldUpdateOperationsInput;
@Field(() => CompanyUpdateManyWithoutAccountOwnerNestedInput, {
nullable: true,
})
companies?: CompanyUpdateManyWithoutAccountOwnerNestedInput;
@Field(() => GraphQLJSON, {nullable:true})
metadata?: any;
@HideField()
refreshTokens?: RefreshTokenUpdateManyWithoutUserNestedInput;
@Field(() => CompanyUpdateManyWithoutAccountOwnerNestedInput, {nullable:true})
companies?: CompanyUpdateManyWithoutAccountOwnerNestedInput;
@Field(() => CommentUpdateManyWithoutAuthorNestedInput, { nullable: true })
comments?: CommentUpdateManyWithoutAuthorNestedInput;
@HideField()
refreshTokens?: RefreshTokenUpdateManyWithoutUserNestedInput;
@Field(() => CommentUpdateManyWithoutAuthorNestedInput, {nullable:true})
comments?: CommentUpdateManyWithoutAuthorNestedInput;
}

View File

@ -14,59 +14,58 @@ import { CommentUpdateManyWithoutAuthorNestedInput } from '../comment/comment-up
@InputType()
export class UserUpdateInput {
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
id?: StringFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true })
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
createdAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, { nullable: true })
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => DateTimeFieldUpdateOperationsInput, {nullable:true})
updatedAt?: DateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, { nullable: true })
lastSeen?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, {nullable:true})
deletedAt?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => BoolFieldUpdateOperationsInput, { nullable: true })
disabled?: BoolFieldUpdateOperationsInput;
@Field(() => NullableDateTimeFieldUpdateOperationsInput, {nullable:true})
lastSeen?: NullableDateTimeFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
displayName?: StringFieldUpdateOperationsInput;
@Field(() => BoolFieldUpdateOperationsInput, {nullable:true})
disabled?: BoolFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
email?: StringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
displayName?: StringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, { nullable: true })
avatarUrl?: NullableStringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
email?: StringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, { nullable: true })
locale?: StringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, {nullable:true})
avatarUrl?: NullableStringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, { nullable: true })
phoneNumber?: NullableStringFieldUpdateOperationsInput;
@Field(() => StringFieldUpdateOperationsInput, {nullable:true})
locale?: StringFieldUpdateOperationsInput;
@HideField()
passwordHash?: NullableStringFieldUpdateOperationsInput;
@Field(() => NullableStringFieldUpdateOperationsInput, {nullable:true})
phoneNumber?: NullableStringFieldUpdateOperationsInput;
@Field(() => BoolFieldUpdateOperationsInput, { nullable: true })
emailVerified?: BoolFieldUpdateOperationsInput;
@HideField()
passwordHash?: NullableStringFieldUpdateOperationsInput;
@Field(() => GraphQLJSON, { nullable: true })
metadata?: any;
@Field(() => BoolFieldUpdateOperationsInput, {nullable:true})
emailVerified?: BoolFieldUpdateOperationsInput;
@HideField()
workspaceMember?: WorkspaceMemberUpdateOneWithoutUserNestedInput;
@Field(() => GraphQLJSON, {nullable:true})
metadata?: any;
@Field(() => CompanyUpdateManyWithoutAccountOwnerNestedInput, {
nullable: true,
})
companies?: CompanyUpdateManyWithoutAccountOwnerNestedInput;
@HideField()
workspaceMember?: WorkspaceMemberUpdateOneWithoutUserNestedInput;
@HideField()
refreshTokens?: RefreshTokenUpdateManyWithoutUserNestedInput;
@Field(() => CompanyUpdateManyWithoutAccountOwnerNestedInput, {nullable:true})
companies?: CompanyUpdateManyWithoutAccountOwnerNestedInput;
@Field(() => CommentUpdateManyWithoutAuthorNestedInput, { nullable: true })
comments?: CommentUpdateManyWithoutAuthorNestedInput;
@HideField()
refreshTokens?: RefreshTokenUpdateManyWithoutUserNestedInput;
@Field(() => CommentUpdateManyWithoutAuthorNestedInput, {nullable:true})
comments?: CommentUpdateManyWithoutAuthorNestedInput;
}

View File

@ -6,11 +6,12 @@ import { UserCreateWithoutCommentsInput } from './user-create-without-comments.i
@InputType()
export class UserUpsertWithoutCommentsInput {
@Field(() => UserUpdateWithoutCommentsInput, { nullable: false })
@Type(() => UserUpdateWithoutCommentsInput)
update!: UserUpdateWithoutCommentsInput;
@Field(() => UserCreateWithoutCommentsInput, { nullable: false })
@Type(() => UserCreateWithoutCommentsInput)
create!: UserCreateWithoutCommentsInput;
@Field(() => UserUpdateWithoutCommentsInput, {nullable:false})
@Type(() => UserUpdateWithoutCommentsInput)
update!: UserUpdateWithoutCommentsInput;
@Field(() => UserCreateWithoutCommentsInput, {nullable:false})
@Type(() => UserCreateWithoutCommentsInput)
create!: UserCreateWithoutCommentsInput;
}

View File

@ -6,11 +6,12 @@ import { UserCreateWithoutCompaniesInput } from './user-create-without-companies
@InputType()
export class UserUpsertWithoutCompaniesInput {
@Field(() => UserUpdateWithoutCompaniesInput, { nullable: false })
@Type(() => UserUpdateWithoutCompaniesInput)
update!: UserUpdateWithoutCompaniesInput;
@Field(() => UserCreateWithoutCompaniesInput, { nullable: false })
@Type(() => UserCreateWithoutCompaniesInput)
create!: UserCreateWithoutCompaniesInput;
@Field(() => UserUpdateWithoutCompaniesInput, {nullable:false})
@Type(() => UserUpdateWithoutCompaniesInput)
update!: UserUpdateWithoutCompaniesInput;
@Field(() => UserCreateWithoutCompaniesInput, {nullable:false})
@Type(() => UserCreateWithoutCompaniesInput)
create!: UserCreateWithoutCompaniesInput;
}

View File

@ -6,11 +6,12 @@ import { UserCreateWithoutRefreshTokensInput } from './user-create-without-refre
@InputType()
export class UserUpsertWithoutRefreshTokensInput {
@Field(() => UserUpdateWithoutRefreshTokensInput, { nullable: false })
@Type(() => UserUpdateWithoutRefreshTokensInput)
update!: UserUpdateWithoutRefreshTokensInput;
@Field(() => UserCreateWithoutRefreshTokensInput, { nullable: false })
@Type(() => UserCreateWithoutRefreshTokensInput)
create!: UserCreateWithoutRefreshTokensInput;
@Field(() => UserUpdateWithoutRefreshTokensInput, {nullable:false})
@Type(() => UserUpdateWithoutRefreshTokensInput)
update!: UserUpdateWithoutRefreshTokensInput;
@Field(() => UserCreateWithoutRefreshTokensInput, {nullable:false})
@Type(() => UserCreateWithoutRefreshTokensInput)
create!: UserCreateWithoutRefreshTokensInput;
}

View File

@ -6,11 +6,12 @@ import { UserCreateWithoutWorkspaceMemberInput } from './user-create-without-wor
@InputType()
export class UserUpsertWithoutWorkspaceMemberInput {
@Field(() => UserUpdateWithoutWorkspaceMemberInput, { nullable: false })
@Type(() => UserUpdateWithoutWorkspaceMemberInput)
update!: UserUpdateWithoutWorkspaceMemberInput;
@Field(() => UserCreateWithoutWorkspaceMemberInput, { nullable: false })
@Type(() => UserCreateWithoutWorkspaceMemberInput)
create!: UserCreateWithoutWorkspaceMemberInput;
@Field(() => UserUpdateWithoutWorkspaceMemberInput, {nullable:false})
@Type(() => UserUpdateWithoutWorkspaceMemberInput)
update!: UserUpdateWithoutWorkspaceMemberInput;
@Field(() => UserCreateWithoutWorkspaceMemberInput, {nullable:false})
@Type(() => UserCreateWithoutWorkspaceMemberInput)
create!: UserCreateWithoutWorkspaceMemberInput;
}

View File

@ -3,9 +3,10 @@ import { InputType } from '@nestjs/graphql';
@InputType()
export class UserWhereUniqueInput {
@Field(() => String, { nullable: true })
id?: string;
@Field(() => String, { nullable: true })
email?: string;
@Field(() => String, {nullable:true})
id?: string;
@Field(() => String, {nullable:true})
email?: string;
}

View File

@ -14,66 +14,67 @@ import { CommentListRelationFilter } from '../comment/comment-list-relation-filt
@InputType()
export class UserWhereInput {
@Field(() => [UserWhereInput], { nullable: true })
AND?: Array<UserWhereInput>;
@Field(() => [UserWhereInput], { nullable: true })
OR?: Array<UserWhereInput>;
@Field(() => [UserWhereInput], {nullable:true})
AND?: Array<UserWhereInput>;
@Field(() => [UserWhereInput], { nullable: true })
NOT?: Array<UserWhereInput>;
@Field(() => [UserWhereInput], {nullable:true})
OR?: Array<UserWhereInput>;
@Field(() => StringFilter, { nullable: true })
id?: StringFilter;
@Field(() => [UserWhereInput], {nullable:true})
NOT?: Array<UserWhereInput>;
@Field(() => DateTimeFilter, { nullable: true })
createdAt?: DateTimeFilter;
@Field(() => StringFilter, {nullable:true})
id?: StringFilter;
@Field(() => DateTimeFilter, { nullable: true })
updatedAt?: DateTimeFilter;
@Field(() => DateTimeFilter, {nullable:true})
createdAt?: DateTimeFilter;
@Field(() => DateTimeNullableFilter, { nullable: true })
deletedAt?: DateTimeNullableFilter;
@Field(() => DateTimeFilter, {nullable:true})
updatedAt?: DateTimeFilter;
@Field(() => DateTimeNullableFilter, { nullable: true })
lastSeen?: DateTimeNullableFilter;
@Field(() => DateTimeNullableFilter, {nullable:true})
deletedAt?: DateTimeNullableFilter;
@Field(() => BoolFilter, { nullable: true })
disabled?: BoolFilter;
@Field(() => DateTimeNullableFilter, {nullable:true})
lastSeen?: DateTimeNullableFilter;
@Field(() => StringFilter, { nullable: true })
displayName?: StringFilter;
@Field(() => BoolFilter, {nullable:true})
disabled?: BoolFilter;
@Field(() => StringFilter, { nullable: true })
email?: StringFilter;
@Field(() => StringFilter, {nullable:true})
displayName?: StringFilter;
@Field(() => StringNullableFilter, { nullable: true })
avatarUrl?: StringNullableFilter;
@Field(() => StringFilter, {nullable:true})
email?: StringFilter;
@Field(() => StringFilter, { nullable: true })
locale?: StringFilter;
@Field(() => StringNullableFilter, {nullable:true})
avatarUrl?: StringNullableFilter;
@Field(() => StringNullableFilter, { nullable: true })
phoneNumber?: StringNullableFilter;
@Field(() => StringFilter, {nullable:true})
locale?: StringFilter;
@HideField()
passwordHash?: StringNullableFilter;
@Field(() => StringNullableFilter, {nullable:true})
phoneNumber?: StringNullableFilter;
@Field(() => BoolFilter, { nullable: true })
emailVerified?: BoolFilter;
@HideField()
passwordHash?: StringNullableFilter;
@Field(() => JsonNullableFilter, { nullable: true })
metadata?: JsonNullableFilter;
@Field(() => BoolFilter, {nullable:true})
emailVerified?: BoolFilter;
@HideField()
workspaceMember?: WorkspaceMemberRelationFilter;
@Field(() => JsonNullableFilter, {nullable:true})
metadata?: JsonNullableFilter;
@Field(() => CompanyListRelationFilter, { nullable: true })
companies?: CompanyListRelationFilter;
@HideField()
workspaceMember?: WorkspaceMemberRelationFilter;
@HideField()
refreshTokens?: RefreshTokenListRelationFilter;
@Field(() => CompanyListRelationFilter, {nullable:true})
companies?: CompanyListRelationFilter;
@Field(() => CommentListRelationFilter, { nullable: true })
comments?: CommentListRelationFilter;
@HideField()
refreshTokens?: RefreshTokenListRelationFilter;
@Field(() => CommentListRelationFilter, {nullable:true})
comments?: CommentListRelationFilter;
}

View File

@ -11,60 +11,61 @@ import { UserCount } from './user-count.output';
@ObjectType()
export class User {
@Field(() => ID, { nullable: false })
id!: string;
@Field(() => Date, { nullable: false })
createdAt!: Date;
@Field(() => ID, {nullable:false})
id!: string;
@Field(() => Date, { nullable: false })
updatedAt!: Date;
@Field(() => Date, {nullable:false})
createdAt!: Date;
@Field(() => Date, { nullable: true })
deletedAt!: Date | null;
@Field(() => Date, {nullable:false})
updatedAt!: Date;
@Field(() => Date, { nullable: true })
lastSeen!: Date | null;
@Field(() => Date, {nullable:true})
deletedAt!: Date | null;
@Field(() => Boolean, { nullable: false, defaultValue: false })
disabled!: boolean;
@Field(() => Date, {nullable:true})
lastSeen!: Date | null;
@Field(() => String, { nullable: false })
displayName!: string;
@Field(() => Boolean, {nullable:false,defaultValue:false})
disabled!: boolean;
@Field(() => String, { nullable: false })
email!: string;
@Field(() => String, {nullable:false})
displayName!: string;
@Field(() => String, { nullable: true })
avatarUrl!: string | null;
@Field(() => String, {nullable:false})
email!: string;
@Field(() => String, { nullable: false })
locale!: string;
@Field(() => String, {nullable:true})
avatarUrl!: string | null;
@Field(() => String, { nullable: true })
phoneNumber!: string | null;
@Field(() => String, {nullable:false})
locale!: string;
@HideField()
passwordHash!: string | null;
@Field(() => String, {nullable:true})
phoneNumber!: string | null;
@Field(() => Boolean, { nullable: false, defaultValue: false })
emailVerified!: boolean;
@HideField()
passwordHash!: string | null;
@Field(() => GraphQLJSON, { nullable: true })
metadata!: any | null;
@Field(() => Boolean, {nullable:false,defaultValue:false})
emailVerified!: boolean;
@Field(() => WorkspaceMember, { nullable: true })
workspaceMember?: WorkspaceMember | null;
@Field(() => GraphQLJSON, {nullable:true})
metadata!: any | null;
@Field(() => [Company], { nullable: true })
companies?: Array<Company>;
@Field(() => WorkspaceMember, {nullable:true})
workspaceMember?: WorkspaceMember | null;
@HideField()
refreshTokens?: Array<RefreshToken>;
@Field(() => [Company], {nullable:true})
companies?: Array<Company>;
@Field(() => [Comment], { nullable: true })
comments?: Array<Comment>;
@HideField()
refreshTokens?: Array<RefreshToken>;
@HideField()
_count?: UserCount;
@Field(() => [Comment], {nullable:true})
comments?: Array<Comment>;
@HideField()
_count?: UserCount;
}