Guest User

Untitled

a guest
Sep 11th, 2024
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.56 KB | None | 0 0
  1. import * as TypeGraphQL from "type-graphql";
  2. import * as GraphQLScalars from "graphql-scalars";
  3. import { Prisma } from "@prisma/client";
  4. import { DecimalJSScalar } from "../../scalars";
  5. import { EventNullableRelationFilter } from "../inputs/EventNullableRelationFilter";
  6. import { IntNullableFilter } from "../inputs/IntNullableFilter";
  7. import { LocationNullableRelationFilter } from "../inputs/LocationNullableRelationFilter";
  8. import { PersonNullableRelationFilter } from "../inputs/PersonNullableRelationFilter";
  9. import { RitualResultsNullableRelationFilter } from "../inputs/RitualResultsNullableRelationFilter";
  10. import { StringFilter } from "../inputs/StringFilter";
  11. import { StringNullableFilter } from "../inputs/StringNullableFilter";
  12. import { TagRelationFilter } from "../inputs/TagRelationFilter";
  13. import { TagToObjectRelationWhereInput } from "../inputs/TagToObjectRelationWhereInput";
  14. import { TarotCardDrawNullableRelationFilter } from "../inputs/TarotCardDrawNullableRelationFilter";
  15. import { TarotCardNullableRelationFilter } from "../inputs/TarotCardNullableRelationFilter";
  16. import { TarotDeckCardNullableRelationFilter } from "../inputs/TarotDeckCardNullableRelationFilter";
  17. import { TarotDeckNullableRelationFilter } from "../inputs/TarotDeckNullableRelationFilter";
  18. import { TarotPositionNullableRelationFilter } from "../inputs/TarotPositionNullableRelationFilter";
  19. import { TarotSpreadNullableRelationFilter } from "../inputs/TarotSpreadNullableRelationFilter";
  20. import { ToolNullableRelationFilter } from "../inputs/ToolNullableRelationFilter";
  21.  
  22. @TypeGraphQL.InputType("TagToObjectRelationWhereUniqueInput", {})
  23. export class TagToObjectRelationWhereUniqueInput {
  24. @TypeGraphQL.Field(_type => [TagToObjectRelationWhereInput], {
  25. nullable: true
  26. })
  27. AND?: TagToObjectRelationWhereInput[] | undefined;
  28.  
  29. @TypeGraphQL.Field(_type => [TagToObjectRelationWhereInput], {
  30. nullable: true
  31. })
  32. OR?: TagToObjectRelationWhereInput[] | undefined;
  33.  
  34. @TypeGraphQL.Field(_type => [TagToObjectRelationWhereInput], {
  35. nullable: true
  36. })
  37. NOT?: TagToObjectRelationWhereInput[] | undefined;
  38.  
  39. @TypeGraphQL.Field(_type => StringFilter, {
  40. nullable: true
  41. })
  42. tagId?: StringFilter | undefined;
  43.  
  44. @TypeGraphQL.Field(_type => StringNullableFilter, {
  45. nullable: true
  46. })
  47. eventId?: StringNullableFilter | undefined;
  48.  
  49. @TypeGraphQL.Field(_type => StringNullableFilter, {
  50. nullable: true
  51. })
  52. locationId?: StringNullableFilter | undefined;
  53.  
  54. @TypeGraphQL.Field(_type => StringNullableFilter, {
  55. nullable: true
  56. })
  57. personId?: StringNullableFilter | undefined;
  58.  
  59. @TypeGraphQL.Field(_type => StringNullableFilter, {
  60. nullable: true
  61. })
  62. ritualResultsId?: StringNullableFilter | undefined;
  63.  
  64. @TypeGraphQL.Field(_type => StringNullableFilter, {
  65. nullable: true
  66. })
  67. tarotCardId?: StringNullableFilter | undefined;
  68.  
  69. @TypeGraphQL.Field(_type => StringNullableFilter, {
  70. nullable: true
  71. })
  72. tarotCardDrawId?: StringNullableFilter | undefined;
  73.  
  74. @TypeGraphQL.Field(_type => StringNullableFilter, {
  75. nullable: true
  76. })
  77. tarotDeckId?: StringNullableFilter | undefined;
  78.  
  79. @TypeGraphQL.Field(_type => StringNullableFilter, {
  80. nullable: true
  81. })
  82. tarotDeckCardId?: StringNullableFilter | undefined;
  83.  
  84. @TypeGraphQL.Field(_type => StringNullableFilter, {
  85. nullable: true
  86. })
  87. tarotPositionId?: StringNullableFilter | undefined;
  88.  
  89. @TypeGraphQL.Field(_type => StringNullableFilter, {
  90. nullable: true
  91. })
  92. toolId?: StringNullableFilter | undefined;
  93.  
  94. @TypeGraphQL.Field(_type => StringNullableFilter, {
  95. nullable: true
  96. })
  97. tarotSpreadId?: StringNullableFilter | undefined;
  98.  
  99. @TypeGraphQL.Field(_type => IntNullableFilter, {
  100. nullable: true
  101. })
  102. dummy?: IntNullableFilter | undefined;
  103.  
  104. @TypeGraphQL.Field(_type => TagRelationFilter, {
  105. nullable: true
  106. })
  107. tag?: TagRelationFilter | undefined;
  108.  
  109. @TypeGraphQL.Field(_type => EventNullableRelationFilter, {
  110. nullable: true
  111. })
  112. Event?: EventNullableRelationFilter | undefined;
  113.  
  114. @TypeGraphQL.Field(_type => LocationNullableRelationFilter, {
  115. nullable: true
  116. })
  117. Location?: LocationNullableRelationFilter | undefined;
  118.  
  119. @TypeGraphQL.Field(_type => PersonNullableRelationFilter, {
  120. nullable: true
  121. })
  122. person?: PersonNullableRelationFilter | undefined;
  123.  
  124. @TypeGraphQL.Field(_type => RitualResultsNullableRelationFilter, {
  125. nullable: true
  126. })
  127. ritualResults?: RitualResultsNullableRelationFilter | undefined;
  128.  
  129. @TypeGraphQL.Field(_type => TarotCardNullableRelationFilter, {
  130. nullable: true
  131. })
  132. tarotCard?: TarotCardNullableRelationFilter | undefined;
  133.  
  134. @TypeGraphQL.Field(_type => TarotCardDrawNullableRelationFilter, {
  135. nullable: true
  136. })
  137. tarotCardDraw?: TarotCardDrawNullableRelationFilter | undefined;
  138.  
  139. @TypeGraphQL.Field(_type => TarotDeckNullableRelationFilter, {
  140. nullable: true
  141. })
  142. tarotDeck?: TarotDeckNullableRelationFilter | undefined;
  143.  
  144. @TypeGraphQL.Field(_type => TarotDeckCardNullableRelationFilter, {
  145. nullable: true
  146. })
  147. tarotDeckCard?: TarotDeckCardNullableRelationFilter | undefined;
  148.  
  149. @TypeGraphQL.Field(_type => TarotPositionNullableRelationFilter, {
  150. nullable: true
  151. })
  152. tarotPosition?: TarotPositionNullableRelationFilter | undefined;
  153.  
  154. @TypeGraphQL.Field(_type => ToolNullableRelationFilter, {
  155. nullable: true
  156. })
  157. tool?: ToolNullableRelationFilter | undefined;
  158.  
  159. @TypeGraphQL.Field(_type => TarotSpreadNullableRelationFilter, {
  160. nullable: true
  161. })
  162. TarotSpread?: TarotSpreadNullableRelationFilter | undefined;
  163. }
  164.  
Advertisement
Add Comment
Please, Sign In to add comment