Files
twenty/server/src/core/@generated/user-settings/user-settings-scalar-where-with-aggregates.input.ts
T
Jérémy M 19e165fc05 feat: implementing experience page (#718)
* feat: add color scheme toggle
* feat: colorScheme stored in UserSettings model
* feat: add stories
* fix: AnimatePresence exit not working

---------

Co-authored-by: Lucas Bordeau <bordeau.lucas@gmail.com>
2023-07-18 17:47:27 +00:00

34 lines
1.4 KiB
TypeScript

import { Field } from '@nestjs/graphql';
import { InputType } from '@nestjs/graphql';
import { StringWithAggregatesFilter } from '../prisma/string-with-aggregates-filter.input';
import { EnumColorSchemeWithAggregatesFilter } from '../prisma/enum-color-scheme-with-aggregates-filter.input';
import { DateTimeWithAggregatesFilter } from '../prisma/date-time-with-aggregates-filter.input';
@InputType()
export class UserSettingsScalarWhereWithAggregatesInput {
@Field(() => [UserSettingsScalarWhereWithAggregatesInput], {nullable:true})
AND?: Array<UserSettingsScalarWhereWithAggregatesInput>;
@Field(() => [UserSettingsScalarWhereWithAggregatesInput], {nullable:true})
OR?: Array<UserSettingsScalarWhereWithAggregatesInput>;
@Field(() => [UserSettingsScalarWhereWithAggregatesInput], {nullable:true})
NOT?: Array<UserSettingsScalarWhereWithAggregatesInput>;
@Field(() => StringWithAggregatesFilter, {nullable:true})
id?: StringWithAggregatesFilter;
@Field(() => EnumColorSchemeWithAggregatesFilter, {nullable:true})
colorScheme?: EnumColorSchemeWithAggregatesFilter;
@Field(() => StringWithAggregatesFilter, {nullable:true})
locale?: StringWithAggregatesFilter;
@Field(() => DateTimeWithAggregatesFilter, {nullable:true})
createdAt?: DateTimeWithAggregatesFilter;
@Field(() => DateTimeWithAggregatesFilter, {nullable:true})
updatedAt?: DateTimeWithAggregatesFilter;
}