Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import * as TypeGraphQL from "type-graphql";
- import * as GraphQLScalars from "graphql-scalars";
- import { Prisma } from "@prisma/client";
- import { DecimalJSScalar } from "../../scalars";
- import { EventNullableRelationFilter } from "../inputs/EventNullableRelationFilter";
- import { IntNullableFilter } from "../inputs/IntNullableFilter";
- import { LocationNullableRelationFilter } from "../inputs/LocationNullableRelationFilter";
- import { PersonNullableRelationFilter } from "../inputs/PersonNullableRelationFilter";
- import { RitualResultsNullableRelationFilter } from "../inputs/RitualResultsNullableRelationFilter";
- import { StringFilter } from "../inputs/StringFilter";
- import { StringNullableFilter } from "../inputs/StringNullableFilter";
- import { TagRelationFilter } from "../inputs/TagRelationFilter";
- import { TagToObjectRelationWhereInput } from "../inputs/TagToObjectRelationWhereInput";
- import { TarotCardDrawNullableRelationFilter } from "../inputs/TarotCardDrawNullableRelationFilter";
- import { TarotCardNullableRelationFilter } from "../inputs/TarotCardNullableRelationFilter";
- import { TarotDeckCardNullableRelationFilter } from "../inputs/TarotDeckCardNullableRelationFilter";
- import { TarotDeckNullableRelationFilter } from "../inputs/TarotDeckNullableRelationFilter";
- import { TarotPositionNullableRelationFilter } from "../inputs/TarotPositionNullableRelationFilter";
- import { TarotSpreadNullableRelationFilter } from "../inputs/TarotSpreadNullableRelationFilter";
- import { ToolNullableRelationFilter } from "../inputs/ToolNullableRelationFilter";
- @TypeGraphQL.InputType("TagToObjectRelationWhereUniqueInput", {})
- export class TagToObjectRelationWhereUniqueInput {
- @TypeGraphQL.Field(_type => [TagToObjectRelationWhereInput], {
- nullable: true
- })
- AND?: TagToObjectRelationWhereInput[] | undefined;
- @TypeGraphQL.Field(_type => [TagToObjectRelationWhereInput], {
- nullable: true
- })
- OR?: TagToObjectRelationWhereInput[] | undefined;
- @TypeGraphQL.Field(_type => [TagToObjectRelationWhereInput], {
- nullable: true
- })
- NOT?: TagToObjectRelationWhereInput[] | undefined;
- @TypeGraphQL.Field(_type => StringFilter, {
- nullable: true
- })
- tagId?: StringFilter | undefined;
- @TypeGraphQL.Field(_type => StringNullableFilter, {
- nullable: true
- })
- eventId?: StringNullableFilter | undefined;
- @TypeGraphQL.Field(_type => StringNullableFilter, {
- nullable: true
- })
- locationId?: StringNullableFilter | undefined;
- @TypeGraphQL.Field(_type => StringNullableFilter, {
- nullable: true
- })
- personId?: StringNullableFilter | undefined;
- @TypeGraphQL.Field(_type => StringNullableFilter, {
- nullable: true
- })
- ritualResultsId?: StringNullableFilter | undefined;
- @TypeGraphQL.Field(_type => StringNullableFilter, {
- nullable: true
- })
- tarotCardId?: StringNullableFilter | undefined;
- @TypeGraphQL.Field(_type => StringNullableFilter, {
- nullable: true
- })
- tarotCardDrawId?: StringNullableFilter | undefined;
- @TypeGraphQL.Field(_type => StringNullableFilter, {
- nullable: true
- })
- tarotDeckId?: StringNullableFilter | undefined;
- @TypeGraphQL.Field(_type => StringNullableFilter, {
- nullable: true
- })
- tarotDeckCardId?: StringNullableFilter | undefined;
- @TypeGraphQL.Field(_type => StringNullableFilter, {
- nullable: true
- })
- tarotPositionId?: StringNullableFilter | undefined;
- @TypeGraphQL.Field(_type => StringNullableFilter, {
- nullable: true
- })
- toolId?: StringNullableFilter | undefined;
- @TypeGraphQL.Field(_type => StringNullableFilter, {
- nullable: true
- })
- tarotSpreadId?: StringNullableFilter | undefined;
- @TypeGraphQL.Field(_type => IntNullableFilter, {
- nullable: true
- })
- dummy?: IntNullableFilter | undefined;
- @TypeGraphQL.Field(_type => TagRelationFilter, {
- nullable: true
- })
- tag?: TagRelationFilter | undefined;
- @TypeGraphQL.Field(_type => EventNullableRelationFilter, {
- nullable: true
- })
- Event?: EventNullableRelationFilter | undefined;
- @TypeGraphQL.Field(_type => LocationNullableRelationFilter, {
- nullable: true
- })
- Location?: LocationNullableRelationFilter | undefined;
- @TypeGraphQL.Field(_type => PersonNullableRelationFilter, {
- nullable: true
- })
- person?: PersonNullableRelationFilter | undefined;
- @TypeGraphQL.Field(_type => RitualResultsNullableRelationFilter, {
- nullable: true
- })
- ritualResults?: RitualResultsNullableRelationFilter | undefined;
- @TypeGraphQL.Field(_type => TarotCardNullableRelationFilter, {
- nullable: true
- })
- tarotCard?: TarotCardNullableRelationFilter | undefined;
- @TypeGraphQL.Field(_type => TarotCardDrawNullableRelationFilter, {
- nullable: true
- })
- tarotCardDraw?: TarotCardDrawNullableRelationFilter | undefined;
- @TypeGraphQL.Field(_type => TarotDeckNullableRelationFilter, {
- nullable: true
- })
- tarotDeck?: TarotDeckNullableRelationFilter | undefined;
- @TypeGraphQL.Field(_type => TarotDeckCardNullableRelationFilter, {
- nullable: true
- })
- tarotDeckCard?: TarotDeckCardNullableRelationFilter | undefined;
- @TypeGraphQL.Field(_type => TarotPositionNullableRelationFilter, {
- nullable: true
- })
- tarotPosition?: TarotPositionNullableRelationFilter | undefined;
- @TypeGraphQL.Field(_type => ToolNullableRelationFilter, {
- nullable: true
- })
- tool?: ToolNullableRelationFilter | undefined;
- @TypeGraphQL.Field(_type => TarotSpreadNullableRelationFilter, {
- nullable: true
- })
- TarotSpread?: TarotSpreadNullableRelationFilter | undefined;
- }
Advertisement
Add Comment
Please, Sign In to add comment