Disable linter on generated code (#363)
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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>;
|
||||
}
|
||||
|
||||
@ -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>;
|
||||
}
|
||||
|
||||
@ -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>;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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 })
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user