prisma.graphql 126 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974
  1. # source: http://prisma:4466
  2. # timestamp: Wed Apr 08 2020 18:07:43 GMT+0000 (Coordinated Universal Time)
  3. type AggregateBlock {
  4. count: Int!
  5. }
  6. type AggregateBlockInstance {
  7. count: Int!
  8. }
  9. type AggregateComment {
  10. count: Int!
  11. }
  12. type AggregateExercise {
  13. count: Int!
  14. }
  15. type AggregateExerciseInstance {
  16. count: Int!
  17. }
  18. type AggregateFormat {
  19. count: Int!
  20. }
  21. type AggregateRating {
  22. count: Int!
  23. }
  24. type AggregateTrack {
  25. count: Int!
  26. }
  27. type AggregateTraining {
  28. count: Int!
  29. }
  30. type AggregateTrainingType {
  31. count: Int!
  32. }
  33. type AggregateUser {
  34. count: Int!
  35. }
  36. type BatchPayload {
  37. """The number of nodes that have been affected by the Batch operation."""
  38. count: Long!
  39. }
  40. type Block implements Node {
  41. id: ID!
  42. title: String!
  43. description: String
  44. videos: [String!]!
  45. pictures: [String!]!
  46. duration: Int
  47. format: Format!
  48. rest: Int
  49. tracks(where: TrackWhereInput, orderBy: TrackOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Track!]
  50. blocks(where: BlockInstanceWhereInput, orderBy: BlockInstanceOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [BlockInstance!]
  51. links(where: BlockInstanceWhereInput, orderBy: BlockInstanceOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [BlockInstance!]
  52. exercises(where: ExerciseInstanceWhereInput, orderBy: ExerciseInstanceOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [ExerciseInstance!]
  53. }
  54. """A connection to a list of items."""
  55. type BlockConnection {
  56. """Information to aid in pagination."""
  57. pageInfo: PageInfo!
  58. """A list of edges."""
  59. edges: [BlockEdge]!
  60. aggregate: AggregateBlock!
  61. }
  62. input BlockCreateInput {
  63. id: ID
  64. title: String!
  65. description: String
  66. duration: Int
  67. rest: Int
  68. videos: BlockCreatevideosInput
  69. pictures: BlockCreatepicturesInput
  70. format: FormatCreateOneInput!
  71. tracks: TrackCreateManyInput
  72. blocks: BlockInstanceCreateManyWithoutParentBlockInput
  73. links: BlockInstanceCreateManyWithoutBlockInput
  74. exercises: ExerciseInstanceCreateManyInput
  75. }
  76. input BlockCreateOneWithoutBlocksInput {
  77. create: BlockCreateWithoutBlocksInput
  78. connect: BlockWhereUniqueInput
  79. }
  80. input BlockCreateOneWithoutLinksInput {
  81. create: BlockCreateWithoutLinksInput
  82. connect: BlockWhereUniqueInput
  83. }
  84. input BlockCreatepicturesInput {
  85. set: [String!]
  86. }
  87. input BlockCreatevideosInput {
  88. set: [String!]
  89. }
  90. input BlockCreateWithoutBlocksInput {
  91. id: ID
  92. title: String!
  93. description: String
  94. duration: Int
  95. rest: Int
  96. videos: BlockCreatevideosInput
  97. pictures: BlockCreatepicturesInput
  98. format: FormatCreateOneInput!
  99. tracks: TrackCreateManyInput
  100. links: BlockInstanceCreateManyWithoutBlockInput
  101. exercises: ExerciseInstanceCreateManyInput
  102. }
  103. input BlockCreateWithoutLinksInput {
  104. id: ID
  105. title: String!
  106. description: String
  107. duration: Int
  108. rest: Int
  109. videos: BlockCreatevideosInput
  110. pictures: BlockCreatepicturesInput
  111. format: FormatCreateOneInput!
  112. tracks: TrackCreateManyInput
  113. blocks: BlockInstanceCreateManyWithoutParentBlockInput
  114. exercises: ExerciseInstanceCreateManyInput
  115. }
  116. """An edge in a connection."""
  117. type BlockEdge {
  118. """The item at the end of the edge."""
  119. node: Block!
  120. """A cursor for use in pagination."""
  121. cursor: String!
  122. }
  123. type BlockInstance implements Node {
  124. id: ID!
  125. block: Block!
  126. parentBlock: Block
  127. parentTraining: Training
  128. order: Int!
  129. rounds: Int
  130. variation: String
  131. }
  132. """A connection to a list of items."""
  133. type BlockInstanceConnection {
  134. """Information to aid in pagination."""
  135. pageInfo: PageInfo!
  136. """A list of edges."""
  137. edges: [BlockInstanceEdge]!
  138. aggregate: AggregateBlockInstance!
  139. }
  140. input BlockInstanceCreateInput {
  141. id: ID
  142. order: Int!
  143. rounds: Int
  144. variation: String
  145. block: BlockCreateOneWithoutLinksInput!
  146. parentBlock: BlockCreateOneWithoutBlocksInput
  147. parentTraining: TrainingCreateOneWithoutBlocksInput
  148. }
  149. input BlockInstanceCreateManyWithoutBlockInput {
  150. create: [BlockInstanceCreateWithoutBlockInput!]
  151. connect: [BlockInstanceWhereUniqueInput!]
  152. }
  153. input BlockInstanceCreateManyWithoutParentBlockInput {
  154. create: [BlockInstanceCreateWithoutParentBlockInput!]
  155. connect: [BlockInstanceWhereUniqueInput!]
  156. }
  157. input BlockInstanceCreateManyWithoutParentTrainingInput {
  158. create: [BlockInstanceCreateWithoutParentTrainingInput!]
  159. connect: [BlockInstanceWhereUniqueInput!]
  160. }
  161. input BlockInstanceCreateWithoutBlockInput {
  162. id: ID
  163. order: Int!
  164. rounds: Int
  165. variation: String
  166. parentBlock: BlockCreateOneWithoutBlocksInput
  167. parentTraining: TrainingCreateOneWithoutBlocksInput
  168. }
  169. input BlockInstanceCreateWithoutParentBlockInput {
  170. id: ID
  171. order: Int!
  172. rounds: Int
  173. variation: String
  174. block: BlockCreateOneWithoutLinksInput!
  175. parentTraining: TrainingCreateOneWithoutBlocksInput
  176. }
  177. input BlockInstanceCreateWithoutParentTrainingInput {
  178. id: ID
  179. order: Int!
  180. rounds: Int
  181. variation: String
  182. block: BlockCreateOneWithoutLinksInput!
  183. parentBlock: BlockCreateOneWithoutBlocksInput
  184. }
  185. """An edge in a connection."""
  186. type BlockInstanceEdge {
  187. """The item at the end of the edge."""
  188. node: BlockInstance!
  189. """A cursor for use in pagination."""
  190. cursor: String!
  191. }
  192. enum BlockInstanceOrderByInput {
  193. id_ASC
  194. id_DESC
  195. order_ASC
  196. order_DESC
  197. rounds_ASC
  198. rounds_DESC
  199. variation_ASC
  200. variation_DESC
  201. }
  202. type BlockInstancePreviousValues {
  203. id: ID!
  204. order: Int!
  205. rounds: Int
  206. variation: String
  207. }
  208. input BlockInstanceScalarWhereInput {
  209. """Logical AND on all given filters."""
  210. AND: [BlockInstanceScalarWhereInput!]
  211. """Logical OR on all given filters."""
  212. OR: [BlockInstanceScalarWhereInput!]
  213. """Logical NOT on all given filters combined by AND."""
  214. NOT: [BlockInstanceScalarWhereInput!]
  215. id: ID
  216. """All values that are not equal to given value."""
  217. id_not: ID
  218. """All values that are contained in given list."""
  219. id_in: [ID!]
  220. """All values that are not contained in given list."""
  221. id_not_in: [ID!]
  222. """All values less than the given value."""
  223. id_lt: ID
  224. """All values less than or equal the given value."""
  225. id_lte: ID
  226. """All values greater than the given value."""
  227. id_gt: ID
  228. """All values greater than or equal the given value."""
  229. id_gte: ID
  230. """All values containing the given string."""
  231. id_contains: ID
  232. """All values not containing the given string."""
  233. id_not_contains: ID
  234. """All values starting with the given string."""
  235. id_starts_with: ID
  236. """All values not starting with the given string."""
  237. id_not_starts_with: ID
  238. """All values ending with the given string."""
  239. id_ends_with: ID
  240. """All values not ending with the given string."""
  241. id_not_ends_with: ID
  242. order: Int
  243. """All values that are not equal to given value."""
  244. order_not: Int
  245. """All values that are contained in given list."""
  246. order_in: [Int!]
  247. """All values that are not contained in given list."""
  248. order_not_in: [Int!]
  249. """All values less than the given value."""
  250. order_lt: Int
  251. """All values less than or equal the given value."""
  252. order_lte: Int
  253. """All values greater than the given value."""
  254. order_gt: Int
  255. """All values greater than or equal the given value."""
  256. order_gte: Int
  257. rounds: Int
  258. """All values that are not equal to given value."""
  259. rounds_not: Int
  260. """All values that are contained in given list."""
  261. rounds_in: [Int!]
  262. """All values that are not contained in given list."""
  263. rounds_not_in: [Int!]
  264. """All values less than the given value."""
  265. rounds_lt: Int
  266. """All values less than or equal the given value."""
  267. rounds_lte: Int
  268. """All values greater than the given value."""
  269. rounds_gt: Int
  270. """All values greater than or equal the given value."""
  271. rounds_gte: Int
  272. variation: String
  273. """All values that are not equal to given value."""
  274. variation_not: String
  275. """All values that are contained in given list."""
  276. variation_in: [String!]
  277. """All values that are not contained in given list."""
  278. variation_not_in: [String!]
  279. """All values less than the given value."""
  280. variation_lt: String
  281. """All values less than or equal the given value."""
  282. variation_lte: String
  283. """All values greater than the given value."""
  284. variation_gt: String
  285. """All values greater than or equal the given value."""
  286. variation_gte: String
  287. """All values containing the given string."""
  288. variation_contains: String
  289. """All values not containing the given string."""
  290. variation_not_contains: String
  291. """All values starting with the given string."""
  292. variation_starts_with: String
  293. """All values not starting with the given string."""
  294. variation_not_starts_with: String
  295. """All values ending with the given string."""
  296. variation_ends_with: String
  297. """All values not ending with the given string."""
  298. variation_not_ends_with: String
  299. }
  300. type BlockInstanceSubscriptionPayload {
  301. mutation: MutationType!
  302. node: BlockInstance
  303. updatedFields: [String!]
  304. previousValues: BlockInstancePreviousValues
  305. }
  306. input BlockInstanceSubscriptionWhereInput {
  307. """Logical AND on all given filters."""
  308. AND: [BlockInstanceSubscriptionWhereInput!]
  309. """Logical OR on all given filters."""
  310. OR: [BlockInstanceSubscriptionWhereInput!]
  311. """Logical NOT on all given filters combined by AND."""
  312. NOT: [BlockInstanceSubscriptionWhereInput!]
  313. """The subscription event gets dispatched when it's listed in mutation_in"""
  314. mutation_in: [MutationType!]
  315. """
  316. The subscription event gets only dispatched when one of the updated fields names is included in this list
  317. """
  318. updatedFields_contains: String
  319. """
  320. The subscription event gets only dispatched when all of the field names included in this list have been updated
  321. """
  322. updatedFields_contains_every: [String!]
  323. """
  324. The subscription event gets only dispatched when some of the field names included in this list have been updated
  325. """
  326. updatedFields_contains_some: [String!]
  327. node: BlockInstanceWhereInput
  328. }
  329. input BlockInstanceUpdateInput {
  330. order: Int
  331. rounds: Int
  332. variation: String
  333. block: BlockUpdateOneRequiredWithoutLinksInput
  334. parentBlock: BlockUpdateOneWithoutBlocksInput
  335. parentTraining: TrainingUpdateOneWithoutBlocksInput
  336. }
  337. input BlockInstanceUpdateManyDataInput {
  338. order: Int
  339. rounds: Int
  340. variation: String
  341. }
  342. input BlockInstanceUpdateManyMutationInput {
  343. order: Int
  344. rounds: Int
  345. variation: String
  346. }
  347. input BlockInstanceUpdateManyWithoutBlockInput {
  348. create: [BlockInstanceCreateWithoutBlockInput!]
  349. connect: [BlockInstanceWhereUniqueInput!]
  350. set: [BlockInstanceWhereUniqueInput!]
  351. disconnect: [BlockInstanceWhereUniqueInput!]
  352. delete: [BlockInstanceWhereUniqueInput!]
  353. update: [BlockInstanceUpdateWithWhereUniqueWithoutBlockInput!]
  354. updateMany: [BlockInstanceUpdateManyWithWhereNestedInput!]
  355. deleteMany: [BlockInstanceScalarWhereInput!]
  356. upsert: [BlockInstanceUpsertWithWhereUniqueWithoutBlockInput!]
  357. }
  358. input BlockInstanceUpdateManyWithoutParentBlockInput {
  359. create: [BlockInstanceCreateWithoutParentBlockInput!]
  360. connect: [BlockInstanceWhereUniqueInput!]
  361. set: [BlockInstanceWhereUniqueInput!]
  362. disconnect: [BlockInstanceWhereUniqueInput!]
  363. delete: [BlockInstanceWhereUniqueInput!]
  364. update: [BlockInstanceUpdateWithWhereUniqueWithoutParentBlockInput!]
  365. updateMany: [BlockInstanceUpdateManyWithWhereNestedInput!]
  366. deleteMany: [BlockInstanceScalarWhereInput!]
  367. upsert: [BlockInstanceUpsertWithWhereUniqueWithoutParentBlockInput!]
  368. }
  369. input BlockInstanceUpdateManyWithoutParentTrainingInput {
  370. create: [BlockInstanceCreateWithoutParentTrainingInput!]
  371. connect: [BlockInstanceWhereUniqueInput!]
  372. set: [BlockInstanceWhereUniqueInput!]
  373. disconnect: [BlockInstanceWhereUniqueInput!]
  374. delete: [BlockInstanceWhereUniqueInput!]
  375. update: [BlockInstanceUpdateWithWhereUniqueWithoutParentTrainingInput!]
  376. updateMany: [BlockInstanceUpdateManyWithWhereNestedInput!]
  377. deleteMany: [BlockInstanceScalarWhereInput!]
  378. upsert: [BlockInstanceUpsertWithWhereUniqueWithoutParentTrainingInput!]
  379. }
  380. input BlockInstanceUpdateManyWithWhereNestedInput {
  381. where: BlockInstanceScalarWhereInput!
  382. data: BlockInstanceUpdateManyDataInput!
  383. }
  384. input BlockInstanceUpdateWithoutBlockDataInput {
  385. order: Int
  386. rounds: Int
  387. variation: String
  388. parentBlock: BlockUpdateOneWithoutBlocksInput
  389. parentTraining: TrainingUpdateOneWithoutBlocksInput
  390. }
  391. input BlockInstanceUpdateWithoutParentBlockDataInput {
  392. order: Int
  393. rounds: Int
  394. variation: String
  395. block: BlockUpdateOneRequiredWithoutLinksInput
  396. parentTraining: TrainingUpdateOneWithoutBlocksInput
  397. }
  398. input BlockInstanceUpdateWithoutParentTrainingDataInput {
  399. order: Int
  400. rounds: Int
  401. variation: String
  402. block: BlockUpdateOneRequiredWithoutLinksInput
  403. parentBlock: BlockUpdateOneWithoutBlocksInput
  404. }
  405. input BlockInstanceUpdateWithWhereUniqueWithoutBlockInput {
  406. where: BlockInstanceWhereUniqueInput!
  407. data: BlockInstanceUpdateWithoutBlockDataInput!
  408. }
  409. input BlockInstanceUpdateWithWhereUniqueWithoutParentBlockInput {
  410. where: BlockInstanceWhereUniqueInput!
  411. data: BlockInstanceUpdateWithoutParentBlockDataInput!
  412. }
  413. input BlockInstanceUpdateWithWhereUniqueWithoutParentTrainingInput {
  414. where: BlockInstanceWhereUniqueInput!
  415. data: BlockInstanceUpdateWithoutParentTrainingDataInput!
  416. }
  417. input BlockInstanceUpsertWithWhereUniqueWithoutBlockInput {
  418. where: BlockInstanceWhereUniqueInput!
  419. update: BlockInstanceUpdateWithoutBlockDataInput!
  420. create: BlockInstanceCreateWithoutBlockInput!
  421. }
  422. input BlockInstanceUpsertWithWhereUniqueWithoutParentBlockInput {
  423. where: BlockInstanceWhereUniqueInput!
  424. update: BlockInstanceUpdateWithoutParentBlockDataInput!
  425. create: BlockInstanceCreateWithoutParentBlockInput!
  426. }
  427. input BlockInstanceUpsertWithWhereUniqueWithoutParentTrainingInput {
  428. where: BlockInstanceWhereUniqueInput!
  429. update: BlockInstanceUpdateWithoutParentTrainingDataInput!
  430. create: BlockInstanceCreateWithoutParentTrainingInput!
  431. }
  432. input BlockInstanceWhereInput {
  433. """Logical AND on all given filters."""
  434. AND: [BlockInstanceWhereInput!]
  435. """Logical OR on all given filters."""
  436. OR: [BlockInstanceWhereInput!]
  437. """Logical NOT on all given filters combined by AND."""
  438. NOT: [BlockInstanceWhereInput!]
  439. id: ID
  440. """All values that are not equal to given value."""
  441. id_not: ID
  442. """All values that are contained in given list."""
  443. id_in: [ID!]
  444. """All values that are not contained in given list."""
  445. id_not_in: [ID!]
  446. """All values less than the given value."""
  447. id_lt: ID
  448. """All values less than or equal the given value."""
  449. id_lte: ID
  450. """All values greater than the given value."""
  451. id_gt: ID
  452. """All values greater than or equal the given value."""
  453. id_gte: ID
  454. """All values containing the given string."""
  455. id_contains: ID
  456. """All values not containing the given string."""
  457. id_not_contains: ID
  458. """All values starting with the given string."""
  459. id_starts_with: ID
  460. """All values not starting with the given string."""
  461. id_not_starts_with: ID
  462. """All values ending with the given string."""
  463. id_ends_with: ID
  464. """All values not ending with the given string."""
  465. id_not_ends_with: ID
  466. order: Int
  467. """All values that are not equal to given value."""
  468. order_not: Int
  469. """All values that are contained in given list."""
  470. order_in: [Int!]
  471. """All values that are not contained in given list."""
  472. order_not_in: [Int!]
  473. """All values less than the given value."""
  474. order_lt: Int
  475. """All values less than or equal the given value."""
  476. order_lte: Int
  477. """All values greater than the given value."""
  478. order_gt: Int
  479. """All values greater than or equal the given value."""
  480. order_gte: Int
  481. rounds: Int
  482. """All values that are not equal to given value."""
  483. rounds_not: Int
  484. """All values that are contained in given list."""
  485. rounds_in: [Int!]
  486. """All values that are not contained in given list."""
  487. rounds_not_in: [Int!]
  488. """All values less than the given value."""
  489. rounds_lt: Int
  490. """All values less than or equal the given value."""
  491. rounds_lte: Int
  492. """All values greater than the given value."""
  493. rounds_gt: Int
  494. """All values greater than or equal the given value."""
  495. rounds_gte: Int
  496. variation: String
  497. """All values that are not equal to given value."""
  498. variation_not: String
  499. """All values that are contained in given list."""
  500. variation_in: [String!]
  501. """All values that are not contained in given list."""
  502. variation_not_in: [String!]
  503. """All values less than the given value."""
  504. variation_lt: String
  505. """All values less than or equal the given value."""
  506. variation_lte: String
  507. """All values greater than the given value."""
  508. variation_gt: String
  509. """All values greater than or equal the given value."""
  510. variation_gte: String
  511. """All values containing the given string."""
  512. variation_contains: String
  513. """All values not containing the given string."""
  514. variation_not_contains: String
  515. """All values starting with the given string."""
  516. variation_starts_with: String
  517. """All values not starting with the given string."""
  518. variation_not_starts_with: String
  519. """All values ending with the given string."""
  520. variation_ends_with: String
  521. """All values not ending with the given string."""
  522. variation_not_ends_with: String
  523. block: BlockWhereInput
  524. parentBlock: BlockWhereInput
  525. parentTraining: TrainingWhereInput
  526. }
  527. input BlockInstanceWhereUniqueInput {
  528. id: ID
  529. }
  530. enum BlockOrderByInput {
  531. id_ASC
  532. id_DESC
  533. title_ASC
  534. title_DESC
  535. description_ASC
  536. description_DESC
  537. duration_ASC
  538. duration_DESC
  539. rest_ASC
  540. rest_DESC
  541. }
  542. type BlockPreviousValues {
  543. id: ID!
  544. title: String!
  545. description: String
  546. videos: [String!]!
  547. pictures: [String!]!
  548. duration: Int
  549. rest: Int
  550. }
  551. type BlockSubscriptionPayload {
  552. mutation: MutationType!
  553. node: Block
  554. updatedFields: [String!]
  555. previousValues: BlockPreviousValues
  556. }
  557. input BlockSubscriptionWhereInput {
  558. """Logical AND on all given filters."""
  559. AND: [BlockSubscriptionWhereInput!]
  560. """Logical OR on all given filters."""
  561. OR: [BlockSubscriptionWhereInput!]
  562. """Logical NOT on all given filters combined by AND."""
  563. NOT: [BlockSubscriptionWhereInput!]
  564. """The subscription event gets dispatched when it's listed in mutation_in"""
  565. mutation_in: [MutationType!]
  566. """
  567. The subscription event gets only dispatched when one of the updated fields names is included in this list
  568. """
  569. updatedFields_contains: String
  570. """
  571. The subscription event gets only dispatched when all of the field names included in this list have been updated
  572. """
  573. updatedFields_contains_every: [String!]
  574. """
  575. The subscription event gets only dispatched when some of the field names included in this list have been updated
  576. """
  577. updatedFields_contains_some: [String!]
  578. node: BlockWhereInput
  579. }
  580. input BlockUpdateInput {
  581. title: String
  582. description: String
  583. duration: Int
  584. rest: Int
  585. videos: BlockUpdatevideosInput
  586. pictures: BlockUpdatepicturesInput
  587. format: FormatUpdateOneRequiredInput
  588. tracks: TrackUpdateManyInput
  589. blocks: BlockInstanceUpdateManyWithoutParentBlockInput
  590. links: BlockInstanceUpdateManyWithoutBlockInput
  591. exercises: ExerciseInstanceUpdateManyInput
  592. }
  593. input BlockUpdateManyMutationInput {
  594. title: String
  595. description: String
  596. duration: Int
  597. rest: Int
  598. videos: BlockUpdatevideosInput
  599. pictures: BlockUpdatepicturesInput
  600. }
  601. input BlockUpdateOneRequiredWithoutLinksInput {
  602. create: BlockCreateWithoutLinksInput
  603. connect: BlockWhereUniqueInput
  604. update: BlockUpdateWithoutLinksDataInput
  605. upsert: BlockUpsertWithoutLinksInput
  606. }
  607. input BlockUpdateOneWithoutBlocksInput {
  608. create: BlockCreateWithoutBlocksInput
  609. connect: BlockWhereUniqueInput
  610. disconnect: Boolean
  611. delete: Boolean
  612. update: BlockUpdateWithoutBlocksDataInput
  613. upsert: BlockUpsertWithoutBlocksInput
  614. }
  615. input BlockUpdatepicturesInput {
  616. set: [String!]
  617. }
  618. input BlockUpdatevideosInput {
  619. set: [String!]
  620. }
  621. input BlockUpdateWithoutBlocksDataInput {
  622. title: String
  623. description: String
  624. duration: Int
  625. rest: Int
  626. videos: BlockUpdatevideosInput
  627. pictures: BlockUpdatepicturesInput
  628. format: FormatUpdateOneRequiredInput
  629. tracks: TrackUpdateManyInput
  630. links: BlockInstanceUpdateManyWithoutBlockInput
  631. exercises: ExerciseInstanceUpdateManyInput
  632. }
  633. input BlockUpdateWithoutLinksDataInput {
  634. title: String
  635. description: String
  636. duration: Int
  637. rest: Int
  638. videos: BlockUpdatevideosInput
  639. pictures: BlockUpdatepicturesInput
  640. format: FormatUpdateOneRequiredInput
  641. tracks: TrackUpdateManyInput
  642. blocks: BlockInstanceUpdateManyWithoutParentBlockInput
  643. exercises: ExerciseInstanceUpdateManyInput
  644. }
  645. input BlockUpsertWithoutBlocksInput {
  646. update: BlockUpdateWithoutBlocksDataInput!
  647. create: BlockCreateWithoutBlocksInput!
  648. }
  649. input BlockUpsertWithoutLinksInput {
  650. update: BlockUpdateWithoutLinksDataInput!
  651. create: BlockCreateWithoutLinksInput!
  652. }
  653. input BlockWhereInput {
  654. """Logical AND on all given filters."""
  655. AND: [BlockWhereInput!]
  656. """Logical OR on all given filters."""
  657. OR: [BlockWhereInput!]
  658. """Logical NOT on all given filters combined by AND."""
  659. NOT: [BlockWhereInput!]
  660. id: ID
  661. """All values that are not equal to given value."""
  662. id_not: ID
  663. """All values that are contained in given list."""
  664. id_in: [ID!]
  665. """All values that are not contained in given list."""
  666. id_not_in: [ID!]
  667. """All values less than the given value."""
  668. id_lt: ID
  669. """All values less than or equal the given value."""
  670. id_lte: ID
  671. """All values greater than the given value."""
  672. id_gt: ID
  673. """All values greater than or equal the given value."""
  674. id_gte: ID
  675. """All values containing the given string."""
  676. id_contains: ID
  677. """All values not containing the given string."""
  678. id_not_contains: ID
  679. """All values starting with the given string."""
  680. id_starts_with: ID
  681. """All values not starting with the given string."""
  682. id_not_starts_with: ID
  683. """All values ending with the given string."""
  684. id_ends_with: ID
  685. """All values not ending with the given string."""
  686. id_not_ends_with: ID
  687. title: String
  688. """All values that are not equal to given value."""
  689. title_not: String
  690. """All values that are contained in given list."""
  691. title_in: [String!]
  692. """All values that are not contained in given list."""
  693. title_not_in: [String!]
  694. """All values less than the given value."""
  695. title_lt: String
  696. """All values less than or equal the given value."""
  697. title_lte: String
  698. """All values greater than the given value."""
  699. title_gt: String
  700. """All values greater than or equal the given value."""
  701. title_gte: String
  702. """All values containing the given string."""
  703. title_contains: String
  704. """All values not containing the given string."""
  705. title_not_contains: String
  706. """All values starting with the given string."""
  707. title_starts_with: String
  708. """All values not starting with the given string."""
  709. title_not_starts_with: String
  710. """All values ending with the given string."""
  711. title_ends_with: String
  712. """All values not ending with the given string."""
  713. title_not_ends_with: String
  714. description: String
  715. """All values that are not equal to given value."""
  716. description_not: String
  717. """All values that are contained in given list."""
  718. description_in: [String!]
  719. """All values that are not contained in given list."""
  720. description_not_in: [String!]
  721. """All values less than the given value."""
  722. description_lt: String
  723. """All values less than or equal the given value."""
  724. description_lte: String
  725. """All values greater than the given value."""
  726. description_gt: String
  727. """All values greater than or equal the given value."""
  728. description_gte: String
  729. """All values containing the given string."""
  730. description_contains: String
  731. """All values not containing the given string."""
  732. description_not_contains: String
  733. """All values starting with the given string."""
  734. description_starts_with: String
  735. """All values not starting with the given string."""
  736. description_not_starts_with: String
  737. """All values ending with the given string."""
  738. description_ends_with: String
  739. """All values not ending with the given string."""
  740. description_not_ends_with: String
  741. duration: Int
  742. """All values that are not equal to given value."""
  743. duration_not: Int
  744. """All values that are contained in given list."""
  745. duration_in: [Int!]
  746. """All values that are not contained in given list."""
  747. duration_not_in: [Int!]
  748. """All values less than the given value."""
  749. duration_lt: Int
  750. """All values less than or equal the given value."""
  751. duration_lte: Int
  752. """All values greater than the given value."""
  753. duration_gt: Int
  754. """All values greater than or equal the given value."""
  755. duration_gte: Int
  756. rest: Int
  757. """All values that are not equal to given value."""
  758. rest_not: Int
  759. """All values that are contained in given list."""
  760. rest_in: [Int!]
  761. """All values that are not contained in given list."""
  762. rest_not_in: [Int!]
  763. """All values less than the given value."""
  764. rest_lt: Int
  765. """All values less than or equal the given value."""
  766. rest_lte: Int
  767. """All values greater than the given value."""
  768. rest_gt: Int
  769. """All values greater than or equal the given value."""
  770. rest_gte: Int
  771. format: FormatWhereInput
  772. tracks_every: TrackWhereInput
  773. tracks_some: TrackWhereInput
  774. tracks_none: TrackWhereInput
  775. blocks_every: BlockInstanceWhereInput
  776. blocks_some: BlockInstanceWhereInput
  777. blocks_none: BlockInstanceWhereInput
  778. links_every: BlockInstanceWhereInput
  779. links_some: BlockInstanceWhereInput
  780. links_none: BlockInstanceWhereInput
  781. exercises_every: ExerciseInstanceWhereInput
  782. exercises_some: ExerciseInstanceWhereInput
  783. exercises_none: ExerciseInstanceWhereInput
  784. }
  785. input BlockWhereUniqueInput {
  786. id: ID
  787. }
  788. type Comment implements Node {
  789. id: ID!
  790. text: String!
  791. author: User!
  792. createdAt: DateTime!
  793. }
  794. """A connection to a list of items."""
  795. type CommentConnection {
  796. """Information to aid in pagination."""
  797. pageInfo: PageInfo!
  798. """A list of edges."""
  799. edges: [CommentEdge]!
  800. aggregate: AggregateComment!
  801. }
  802. input CommentCreateInput {
  803. id: ID
  804. text: String!
  805. author: UserCreateOneWithoutCommentsInput!
  806. }
  807. input CommentCreateManyWithoutAuthorInput {
  808. create: [CommentCreateWithoutAuthorInput!]
  809. connect: [CommentWhereUniqueInput!]
  810. }
  811. input CommentCreateWithoutAuthorInput {
  812. id: ID
  813. text: String!
  814. }
  815. """An edge in a connection."""
  816. type CommentEdge {
  817. """The item at the end of the edge."""
  818. node: Comment!
  819. """A cursor for use in pagination."""
  820. cursor: String!
  821. }
  822. enum CommentOrderByInput {
  823. id_ASC
  824. id_DESC
  825. text_ASC
  826. text_DESC
  827. createdAt_ASC
  828. createdAt_DESC
  829. }
  830. type CommentPreviousValues {
  831. id: ID!
  832. text: String!
  833. createdAt: DateTime!
  834. }
  835. input CommentScalarWhereInput {
  836. """Logical AND on all given filters."""
  837. AND: [CommentScalarWhereInput!]
  838. """Logical OR on all given filters."""
  839. OR: [CommentScalarWhereInput!]
  840. """Logical NOT on all given filters combined by AND."""
  841. NOT: [CommentScalarWhereInput!]
  842. id: ID
  843. """All values that are not equal to given value."""
  844. id_not: ID
  845. """All values that are contained in given list."""
  846. id_in: [ID!]
  847. """All values that are not contained in given list."""
  848. id_not_in: [ID!]
  849. """All values less than the given value."""
  850. id_lt: ID
  851. """All values less than or equal the given value."""
  852. id_lte: ID
  853. """All values greater than the given value."""
  854. id_gt: ID
  855. """All values greater than or equal the given value."""
  856. id_gte: ID
  857. """All values containing the given string."""
  858. id_contains: ID
  859. """All values not containing the given string."""
  860. id_not_contains: ID
  861. """All values starting with the given string."""
  862. id_starts_with: ID
  863. """All values not starting with the given string."""
  864. id_not_starts_with: ID
  865. """All values ending with the given string."""
  866. id_ends_with: ID
  867. """All values not ending with the given string."""
  868. id_not_ends_with: ID
  869. text: String
  870. """All values that are not equal to given value."""
  871. text_not: String
  872. """All values that are contained in given list."""
  873. text_in: [String!]
  874. """All values that are not contained in given list."""
  875. text_not_in: [String!]
  876. """All values less than the given value."""
  877. text_lt: String
  878. """All values less than or equal the given value."""
  879. text_lte: String
  880. """All values greater than the given value."""
  881. text_gt: String
  882. """All values greater than or equal the given value."""
  883. text_gte: String
  884. """All values containing the given string."""
  885. text_contains: String
  886. """All values not containing the given string."""
  887. text_not_contains: String
  888. """All values starting with the given string."""
  889. text_starts_with: String
  890. """All values not starting with the given string."""
  891. text_not_starts_with: String
  892. """All values ending with the given string."""
  893. text_ends_with: String
  894. """All values not ending with the given string."""
  895. text_not_ends_with: String
  896. createdAt: DateTime
  897. """All values that are not equal to given value."""
  898. createdAt_not: DateTime
  899. """All values that are contained in given list."""
  900. createdAt_in: [DateTime!]
  901. """All values that are not contained in given list."""
  902. createdAt_not_in: [DateTime!]
  903. """All values less than the given value."""
  904. createdAt_lt: DateTime
  905. """All values less than or equal the given value."""
  906. createdAt_lte: DateTime
  907. """All values greater than the given value."""
  908. createdAt_gt: DateTime
  909. """All values greater than or equal the given value."""
  910. createdAt_gte: DateTime
  911. }
  912. type CommentSubscriptionPayload {
  913. mutation: MutationType!
  914. node: Comment
  915. updatedFields: [String!]
  916. previousValues: CommentPreviousValues
  917. }
  918. input CommentSubscriptionWhereInput {
  919. """Logical AND on all given filters."""
  920. AND: [CommentSubscriptionWhereInput!]
  921. """Logical OR on all given filters."""
  922. OR: [CommentSubscriptionWhereInput!]
  923. """Logical NOT on all given filters combined by AND."""
  924. NOT: [CommentSubscriptionWhereInput!]
  925. """The subscription event gets dispatched when it's listed in mutation_in"""
  926. mutation_in: [MutationType!]
  927. """
  928. The subscription event gets only dispatched when one of the updated fields names is included in this list
  929. """
  930. updatedFields_contains: String
  931. """
  932. The subscription event gets only dispatched when all of the field names included in this list have been updated
  933. """
  934. updatedFields_contains_every: [String!]
  935. """
  936. The subscription event gets only dispatched when some of the field names included in this list have been updated
  937. """
  938. updatedFields_contains_some: [String!]
  939. node: CommentWhereInput
  940. }
  941. input CommentUpdateInput {
  942. text: String
  943. author: UserUpdateOneRequiredWithoutCommentsInput
  944. }
  945. input CommentUpdateManyDataInput {
  946. text: String
  947. }
  948. input CommentUpdateManyMutationInput {
  949. text: String
  950. }
  951. input CommentUpdateManyWithoutAuthorInput {
  952. create: [CommentCreateWithoutAuthorInput!]
  953. connect: [CommentWhereUniqueInput!]
  954. set: [CommentWhereUniqueInput!]
  955. disconnect: [CommentWhereUniqueInput!]
  956. delete: [CommentWhereUniqueInput!]
  957. update: [CommentUpdateWithWhereUniqueWithoutAuthorInput!]
  958. updateMany: [CommentUpdateManyWithWhereNestedInput!]
  959. deleteMany: [CommentScalarWhereInput!]
  960. upsert: [CommentUpsertWithWhereUniqueWithoutAuthorInput!]
  961. }
  962. input CommentUpdateManyWithWhereNestedInput {
  963. where: CommentScalarWhereInput!
  964. data: CommentUpdateManyDataInput!
  965. }
  966. input CommentUpdateWithoutAuthorDataInput {
  967. text: String
  968. }
  969. input CommentUpdateWithWhereUniqueWithoutAuthorInput {
  970. where: CommentWhereUniqueInput!
  971. data: CommentUpdateWithoutAuthorDataInput!
  972. }
  973. input CommentUpsertWithWhereUniqueWithoutAuthorInput {
  974. where: CommentWhereUniqueInput!
  975. update: CommentUpdateWithoutAuthorDataInput!
  976. create: CommentCreateWithoutAuthorInput!
  977. }
  978. input CommentWhereInput {
  979. """Logical AND on all given filters."""
  980. AND: [CommentWhereInput!]
  981. """Logical OR on all given filters."""
  982. OR: [CommentWhereInput!]
  983. """Logical NOT on all given filters combined by AND."""
  984. NOT: [CommentWhereInput!]
  985. id: ID
  986. """All values that are not equal to given value."""
  987. id_not: ID
  988. """All values that are contained in given list."""
  989. id_in: [ID!]
  990. """All values that are not contained in given list."""
  991. id_not_in: [ID!]
  992. """All values less than the given value."""
  993. id_lt: ID
  994. """All values less than or equal the given value."""
  995. id_lte: ID
  996. """All values greater than the given value."""
  997. id_gt: ID
  998. """All values greater than or equal the given value."""
  999. id_gte: ID
  1000. """All values containing the given string."""
  1001. id_contains: ID
  1002. """All values not containing the given string."""
  1003. id_not_contains: ID
  1004. """All values starting with the given string."""
  1005. id_starts_with: ID
  1006. """All values not starting with the given string."""
  1007. id_not_starts_with: ID
  1008. """All values ending with the given string."""
  1009. id_ends_with: ID
  1010. """All values not ending with the given string."""
  1011. id_not_ends_with: ID
  1012. text: String
  1013. """All values that are not equal to given value."""
  1014. text_not: String
  1015. """All values that are contained in given list."""
  1016. text_in: [String!]
  1017. """All values that are not contained in given list."""
  1018. text_not_in: [String!]
  1019. """All values less than the given value."""
  1020. text_lt: String
  1021. """All values less than or equal the given value."""
  1022. text_lte: String
  1023. """All values greater than the given value."""
  1024. text_gt: String
  1025. """All values greater than or equal the given value."""
  1026. text_gte: String
  1027. """All values containing the given string."""
  1028. text_contains: String
  1029. """All values not containing the given string."""
  1030. text_not_contains: String
  1031. """All values starting with the given string."""
  1032. text_starts_with: String
  1033. """All values not starting with the given string."""
  1034. text_not_starts_with: String
  1035. """All values ending with the given string."""
  1036. text_ends_with: String
  1037. """All values not ending with the given string."""
  1038. text_not_ends_with: String
  1039. createdAt: DateTime
  1040. """All values that are not equal to given value."""
  1041. createdAt_not: DateTime
  1042. """All values that are contained in given list."""
  1043. createdAt_in: [DateTime!]
  1044. """All values that are not contained in given list."""
  1045. createdAt_not_in: [DateTime!]
  1046. """All values less than the given value."""
  1047. createdAt_lt: DateTime
  1048. """All values less than or equal the given value."""
  1049. createdAt_lte: DateTime
  1050. """All values greater than the given value."""
  1051. createdAt_gt: DateTime
  1052. """All values greater than or equal the given value."""
  1053. createdAt_gte: DateTime
  1054. author: UserWhereInput
  1055. }
  1056. input CommentWhereUniqueInput {
  1057. id: ID
  1058. }
  1059. scalar DateTime
  1060. type Exercise implements Node {
  1061. id: ID!
  1062. name: String!
  1063. description: String
  1064. videos: [String!]!
  1065. pictures: [String!]!
  1066. targets: [String!]!
  1067. baseExercise: [String!]!
  1068. }
  1069. """A connection to a list of items."""
  1070. type ExerciseConnection {
  1071. """Information to aid in pagination."""
  1072. pageInfo: PageInfo!
  1073. """A list of edges."""
  1074. edges: [ExerciseEdge]!
  1075. aggregate: AggregateExercise!
  1076. }
  1077. input ExerciseCreatebaseExerciseInput {
  1078. set: [String!]
  1079. }
  1080. input ExerciseCreateInput {
  1081. id: ID
  1082. name: String!
  1083. description: String
  1084. videos: ExerciseCreatevideosInput
  1085. pictures: ExerciseCreatepicturesInput
  1086. targets: ExerciseCreatetargetsInput
  1087. baseExercise: ExerciseCreatebaseExerciseInput
  1088. }
  1089. input ExerciseCreateOneInput {
  1090. create: ExerciseCreateInput
  1091. connect: ExerciseWhereUniqueInput
  1092. }
  1093. input ExerciseCreatepicturesInput {
  1094. set: [String!]
  1095. }
  1096. input ExerciseCreatetargetsInput {
  1097. set: [String!]
  1098. }
  1099. input ExerciseCreatevideosInput {
  1100. set: [String!]
  1101. }
  1102. """An edge in a connection."""
  1103. type ExerciseEdge {
  1104. """The item at the end of the edge."""
  1105. node: Exercise!
  1106. """A cursor for use in pagination."""
  1107. cursor: String!
  1108. }
  1109. type ExerciseInstance implements Node {
  1110. id: ID!
  1111. exercise: Exercise!
  1112. order: Int!
  1113. repetitions: Int
  1114. variation: String
  1115. }
  1116. """A connection to a list of items."""
  1117. type ExerciseInstanceConnection {
  1118. """Information to aid in pagination."""
  1119. pageInfo: PageInfo!
  1120. """A list of edges."""
  1121. edges: [ExerciseInstanceEdge]!
  1122. aggregate: AggregateExerciseInstance!
  1123. }
  1124. input ExerciseInstanceCreateInput {
  1125. id: ID
  1126. order: Int!
  1127. repetitions: Int
  1128. variation: String
  1129. exercise: ExerciseCreateOneInput!
  1130. }
  1131. input ExerciseInstanceCreateManyInput {
  1132. create: [ExerciseInstanceCreateInput!]
  1133. connect: [ExerciseInstanceWhereUniqueInput!]
  1134. }
  1135. """An edge in a connection."""
  1136. type ExerciseInstanceEdge {
  1137. """The item at the end of the edge."""
  1138. node: ExerciseInstance!
  1139. """A cursor for use in pagination."""
  1140. cursor: String!
  1141. }
  1142. enum ExerciseInstanceOrderByInput {
  1143. id_ASC
  1144. id_DESC
  1145. order_ASC
  1146. order_DESC
  1147. repetitions_ASC
  1148. repetitions_DESC
  1149. variation_ASC
  1150. variation_DESC
  1151. }
  1152. type ExerciseInstancePreviousValues {
  1153. id: ID!
  1154. order: Int!
  1155. repetitions: Int
  1156. variation: String
  1157. }
  1158. input ExerciseInstanceScalarWhereInput {
  1159. """Logical AND on all given filters."""
  1160. AND: [ExerciseInstanceScalarWhereInput!]
  1161. """Logical OR on all given filters."""
  1162. OR: [ExerciseInstanceScalarWhereInput!]
  1163. """Logical NOT on all given filters combined by AND."""
  1164. NOT: [ExerciseInstanceScalarWhereInput!]
  1165. id: ID
  1166. """All values that are not equal to given value."""
  1167. id_not: ID
  1168. """All values that are contained in given list."""
  1169. id_in: [ID!]
  1170. """All values that are not contained in given list."""
  1171. id_not_in: [ID!]
  1172. """All values less than the given value."""
  1173. id_lt: ID
  1174. """All values less than or equal the given value."""
  1175. id_lte: ID
  1176. """All values greater than the given value."""
  1177. id_gt: ID
  1178. """All values greater than or equal the given value."""
  1179. id_gte: ID
  1180. """All values containing the given string."""
  1181. id_contains: ID
  1182. """All values not containing the given string."""
  1183. id_not_contains: ID
  1184. """All values starting with the given string."""
  1185. id_starts_with: ID
  1186. """All values not starting with the given string."""
  1187. id_not_starts_with: ID
  1188. """All values ending with the given string."""
  1189. id_ends_with: ID
  1190. """All values not ending with the given string."""
  1191. id_not_ends_with: ID
  1192. order: Int
  1193. """All values that are not equal to given value."""
  1194. order_not: Int
  1195. """All values that are contained in given list."""
  1196. order_in: [Int!]
  1197. """All values that are not contained in given list."""
  1198. order_not_in: [Int!]
  1199. """All values less than the given value."""
  1200. order_lt: Int
  1201. """All values less than or equal the given value."""
  1202. order_lte: Int
  1203. """All values greater than the given value."""
  1204. order_gt: Int
  1205. """All values greater than or equal the given value."""
  1206. order_gte: Int
  1207. repetitions: Int
  1208. """All values that are not equal to given value."""
  1209. repetitions_not: Int
  1210. """All values that are contained in given list."""
  1211. repetitions_in: [Int!]
  1212. """All values that are not contained in given list."""
  1213. repetitions_not_in: [Int!]
  1214. """All values less than the given value."""
  1215. repetitions_lt: Int
  1216. """All values less than or equal the given value."""
  1217. repetitions_lte: Int
  1218. """All values greater than the given value."""
  1219. repetitions_gt: Int
  1220. """All values greater than or equal the given value."""
  1221. repetitions_gte: Int
  1222. variation: String
  1223. """All values that are not equal to given value."""
  1224. variation_not: String
  1225. """All values that are contained in given list."""
  1226. variation_in: [String!]
  1227. """All values that are not contained in given list."""
  1228. variation_not_in: [String!]
  1229. """All values less than the given value."""
  1230. variation_lt: String
  1231. """All values less than or equal the given value."""
  1232. variation_lte: String
  1233. """All values greater than the given value."""
  1234. variation_gt: String
  1235. """All values greater than or equal the given value."""
  1236. variation_gte: String
  1237. """All values containing the given string."""
  1238. variation_contains: String
  1239. """All values not containing the given string."""
  1240. variation_not_contains: String
  1241. """All values starting with the given string."""
  1242. variation_starts_with: String
  1243. """All values not starting with the given string."""
  1244. variation_not_starts_with: String
  1245. """All values ending with the given string."""
  1246. variation_ends_with: String
  1247. """All values not ending with the given string."""
  1248. variation_not_ends_with: String
  1249. }
  1250. type ExerciseInstanceSubscriptionPayload {
  1251. mutation: MutationType!
  1252. node: ExerciseInstance
  1253. updatedFields: [String!]
  1254. previousValues: ExerciseInstancePreviousValues
  1255. }
  1256. input ExerciseInstanceSubscriptionWhereInput {
  1257. """Logical AND on all given filters."""
  1258. AND: [ExerciseInstanceSubscriptionWhereInput!]
  1259. """Logical OR on all given filters."""
  1260. OR: [ExerciseInstanceSubscriptionWhereInput!]
  1261. """Logical NOT on all given filters combined by AND."""
  1262. NOT: [ExerciseInstanceSubscriptionWhereInput!]
  1263. """The subscription event gets dispatched when it's listed in mutation_in"""
  1264. mutation_in: [MutationType!]
  1265. """
  1266. The subscription event gets only dispatched when one of the updated fields names is included in this list
  1267. """
  1268. updatedFields_contains: String
  1269. """
  1270. The subscription event gets only dispatched when all of the field names included in this list have been updated
  1271. """
  1272. updatedFields_contains_every: [String!]
  1273. """
  1274. The subscription event gets only dispatched when some of the field names included in this list have been updated
  1275. """
  1276. updatedFields_contains_some: [String!]
  1277. node: ExerciseInstanceWhereInput
  1278. }
  1279. input ExerciseInstanceUpdateDataInput {
  1280. order: Int
  1281. repetitions: Int
  1282. variation: String
  1283. exercise: ExerciseUpdateOneRequiredInput
  1284. }
  1285. input ExerciseInstanceUpdateInput {
  1286. order: Int
  1287. repetitions: Int
  1288. variation: String
  1289. exercise: ExerciseUpdateOneRequiredInput
  1290. }
  1291. input ExerciseInstanceUpdateManyDataInput {
  1292. order: Int
  1293. repetitions: Int
  1294. variation: String
  1295. }
  1296. input ExerciseInstanceUpdateManyInput {
  1297. create: [ExerciseInstanceCreateInput!]
  1298. connect: [ExerciseInstanceWhereUniqueInput!]
  1299. set: [ExerciseInstanceWhereUniqueInput!]
  1300. disconnect: [ExerciseInstanceWhereUniqueInput!]
  1301. delete: [ExerciseInstanceWhereUniqueInput!]
  1302. update: [ExerciseInstanceUpdateWithWhereUniqueNestedInput!]
  1303. updateMany: [ExerciseInstanceUpdateManyWithWhereNestedInput!]
  1304. deleteMany: [ExerciseInstanceScalarWhereInput!]
  1305. upsert: [ExerciseInstanceUpsertWithWhereUniqueNestedInput!]
  1306. }
  1307. input ExerciseInstanceUpdateManyMutationInput {
  1308. order: Int
  1309. repetitions: Int
  1310. variation: String
  1311. }
  1312. input ExerciseInstanceUpdateManyWithWhereNestedInput {
  1313. where: ExerciseInstanceScalarWhereInput!
  1314. data: ExerciseInstanceUpdateManyDataInput!
  1315. }
  1316. input ExerciseInstanceUpdateWithWhereUniqueNestedInput {
  1317. where: ExerciseInstanceWhereUniqueInput!
  1318. data: ExerciseInstanceUpdateDataInput!
  1319. }
  1320. input ExerciseInstanceUpsertWithWhereUniqueNestedInput {
  1321. where: ExerciseInstanceWhereUniqueInput!
  1322. update: ExerciseInstanceUpdateDataInput!
  1323. create: ExerciseInstanceCreateInput!
  1324. }
  1325. input ExerciseInstanceWhereInput {
  1326. """Logical AND on all given filters."""
  1327. AND: [ExerciseInstanceWhereInput!]
  1328. """Logical OR on all given filters."""
  1329. OR: [ExerciseInstanceWhereInput!]
  1330. """Logical NOT on all given filters combined by AND."""
  1331. NOT: [ExerciseInstanceWhereInput!]
  1332. id: ID
  1333. """All values that are not equal to given value."""
  1334. id_not: ID
  1335. """All values that are contained in given list."""
  1336. id_in: [ID!]
  1337. """All values that are not contained in given list."""
  1338. id_not_in: [ID!]
  1339. """All values less than the given value."""
  1340. id_lt: ID
  1341. """All values less than or equal the given value."""
  1342. id_lte: ID
  1343. """All values greater than the given value."""
  1344. id_gt: ID
  1345. """All values greater than or equal the given value."""
  1346. id_gte: ID
  1347. """All values containing the given string."""
  1348. id_contains: ID
  1349. """All values not containing the given string."""
  1350. id_not_contains: ID
  1351. """All values starting with the given string."""
  1352. id_starts_with: ID
  1353. """All values not starting with the given string."""
  1354. id_not_starts_with: ID
  1355. """All values ending with the given string."""
  1356. id_ends_with: ID
  1357. """All values not ending with the given string."""
  1358. id_not_ends_with: ID
  1359. order: Int
  1360. """All values that are not equal to given value."""
  1361. order_not: Int
  1362. """All values that are contained in given list."""
  1363. order_in: [Int!]
  1364. """All values that are not contained in given list."""
  1365. order_not_in: [Int!]
  1366. """All values less than the given value."""
  1367. order_lt: Int
  1368. """All values less than or equal the given value."""
  1369. order_lte: Int
  1370. """All values greater than the given value."""
  1371. order_gt: Int
  1372. """All values greater than or equal the given value."""
  1373. order_gte: Int
  1374. repetitions: Int
  1375. """All values that are not equal to given value."""
  1376. repetitions_not: Int
  1377. """All values that are contained in given list."""
  1378. repetitions_in: [Int!]
  1379. """All values that are not contained in given list."""
  1380. repetitions_not_in: [Int!]
  1381. """All values less than the given value."""
  1382. repetitions_lt: Int
  1383. """All values less than or equal the given value."""
  1384. repetitions_lte: Int
  1385. """All values greater than the given value."""
  1386. repetitions_gt: Int
  1387. """All values greater than or equal the given value."""
  1388. repetitions_gte: Int
  1389. variation: String
  1390. """All values that are not equal to given value."""
  1391. variation_not: String
  1392. """All values that are contained in given list."""
  1393. variation_in: [String!]
  1394. """All values that are not contained in given list."""
  1395. variation_not_in: [String!]
  1396. """All values less than the given value."""
  1397. variation_lt: String
  1398. """All values less than or equal the given value."""
  1399. variation_lte: String
  1400. """All values greater than the given value."""
  1401. variation_gt: String
  1402. """All values greater than or equal the given value."""
  1403. variation_gte: String
  1404. """All values containing the given string."""
  1405. variation_contains: String
  1406. """All values not containing the given string."""
  1407. variation_not_contains: String
  1408. """All values starting with the given string."""
  1409. variation_starts_with: String
  1410. """All values not starting with the given string."""
  1411. variation_not_starts_with: String
  1412. """All values ending with the given string."""
  1413. variation_ends_with: String
  1414. """All values not ending with the given string."""
  1415. variation_not_ends_with: String
  1416. exercise: ExerciseWhereInput
  1417. }
  1418. input ExerciseInstanceWhereUniqueInput {
  1419. id: ID
  1420. }
  1421. enum ExerciseOrderByInput {
  1422. id_ASC
  1423. id_DESC
  1424. name_ASC
  1425. name_DESC
  1426. description_ASC
  1427. description_DESC
  1428. }
  1429. type ExercisePreviousValues {
  1430. id: ID!
  1431. name: String!
  1432. description: String
  1433. videos: [String!]!
  1434. pictures: [String!]!
  1435. targets: [String!]!
  1436. baseExercise: [String!]!
  1437. }
  1438. type ExerciseSubscriptionPayload {
  1439. mutation: MutationType!
  1440. node: Exercise
  1441. updatedFields: [String!]
  1442. previousValues: ExercisePreviousValues
  1443. }
  1444. input ExerciseSubscriptionWhereInput {
  1445. """Logical AND on all given filters."""
  1446. AND: [ExerciseSubscriptionWhereInput!]
  1447. """Logical OR on all given filters."""
  1448. OR: [ExerciseSubscriptionWhereInput!]
  1449. """Logical NOT on all given filters combined by AND."""
  1450. NOT: [ExerciseSubscriptionWhereInput!]
  1451. """The subscription event gets dispatched when it's listed in mutation_in"""
  1452. mutation_in: [MutationType!]
  1453. """
  1454. The subscription event gets only dispatched when one of the updated fields names is included in this list
  1455. """
  1456. updatedFields_contains: String
  1457. """
  1458. The subscription event gets only dispatched when all of the field names included in this list have been updated
  1459. """
  1460. updatedFields_contains_every: [String!]
  1461. """
  1462. The subscription event gets only dispatched when some of the field names included in this list have been updated
  1463. """
  1464. updatedFields_contains_some: [String!]
  1465. node: ExerciseWhereInput
  1466. }
  1467. input ExerciseUpdatebaseExerciseInput {
  1468. set: [String!]
  1469. }
  1470. input ExerciseUpdateDataInput {
  1471. name: String
  1472. description: String
  1473. videos: ExerciseUpdatevideosInput
  1474. pictures: ExerciseUpdatepicturesInput
  1475. targets: ExerciseUpdatetargetsInput
  1476. baseExercise: ExerciseUpdatebaseExerciseInput
  1477. }
  1478. input ExerciseUpdateInput {
  1479. name: String
  1480. description: String
  1481. videos: ExerciseUpdatevideosInput
  1482. pictures: ExerciseUpdatepicturesInput
  1483. targets: ExerciseUpdatetargetsInput
  1484. baseExercise: ExerciseUpdatebaseExerciseInput
  1485. }
  1486. input ExerciseUpdateManyMutationInput {
  1487. name: String
  1488. description: String
  1489. videos: ExerciseUpdatevideosInput
  1490. pictures: ExerciseUpdatepicturesInput
  1491. targets: ExerciseUpdatetargetsInput
  1492. baseExercise: ExerciseUpdatebaseExerciseInput
  1493. }
  1494. input ExerciseUpdateOneRequiredInput {
  1495. create: ExerciseCreateInput
  1496. connect: ExerciseWhereUniqueInput
  1497. update: ExerciseUpdateDataInput
  1498. upsert: ExerciseUpsertNestedInput
  1499. }
  1500. input ExerciseUpdatepicturesInput {
  1501. set: [String!]
  1502. }
  1503. input ExerciseUpdatetargetsInput {
  1504. set: [String!]
  1505. }
  1506. input ExerciseUpdatevideosInput {
  1507. set: [String!]
  1508. }
  1509. input ExerciseUpsertNestedInput {
  1510. update: ExerciseUpdateDataInput!
  1511. create: ExerciseCreateInput!
  1512. }
  1513. input ExerciseWhereInput {
  1514. """Logical AND on all given filters."""
  1515. AND: [ExerciseWhereInput!]
  1516. """Logical OR on all given filters."""
  1517. OR: [ExerciseWhereInput!]
  1518. """Logical NOT on all given filters combined by AND."""
  1519. NOT: [ExerciseWhereInput!]
  1520. id: ID
  1521. """All values that are not equal to given value."""
  1522. id_not: ID
  1523. """All values that are contained in given list."""
  1524. id_in: [ID!]
  1525. """All values that are not contained in given list."""
  1526. id_not_in: [ID!]
  1527. """All values less than the given value."""
  1528. id_lt: ID
  1529. """All values less than or equal the given value."""
  1530. id_lte: ID
  1531. """All values greater than the given value."""
  1532. id_gt: ID
  1533. """All values greater than or equal the given value."""
  1534. id_gte: ID
  1535. """All values containing the given string."""
  1536. id_contains: ID
  1537. """All values not containing the given string."""
  1538. id_not_contains: ID
  1539. """All values starting with the given string."""
  1540. id_starts_with: ID
  1541. """All values not starting with the given string."""
  1542. id_not_starts_with: ID
  1543. """All values ending with the given string."""
  1544. id_ends_with: ID
  1545. """All values not ending with the given string."""
  1546. id_not_ends_with: ID
  1547. name: String
  1548. """All values that are not equal to given value."""
  1549. name_not: String
  1550. """All values that are contained in given list."""
  1551. name_in: [String!]
  1552. """All values that are not contained in given list."""
  1553. name_not_in: [String!]
  1554. """All values less than the given value."""
  1555. name_lt: String
  1556. """All values less than or equal the given value."""
  1557. name_lte: String
  1558. """All values greater than the given value."""
  1559. name_gt: String
  1560. """All values greater than or equal the given value."""
  1561. name_gte: String
  1562. """All values containing the given string."""
  1563. name_contains: String
  1564. """All values not containing the given string."""
  1565. name_not_contains: String
  1566. """All values starting with the given string."""
  1567. name_starts_with: String
  1568. """All values not starting with the given string."""
  1569. name_not_starts_with: String
  1570. """All values ending with the given string."""
  1571. name_ends_with: String
  1572. """All values not ending with the given string."""
  1573. name_not_ends_with: String
  1574. description: String
  1575. """All values that are not equal to given value."""
  1576. description_not: String
  1577. """All values that are contained in given list."""
  1578. description_in: [String!]
  1579. """All values that are not contained in given list."""
  1580. description_not_in: [String!]
  1581. """All values less than the given value."""
  1582. description_lt: String
  1583. """All values less than or equal the given value."""
  1584. description_lte: String
  1585. """All values greater than the given value."""
  1586. description_gt: String
  1587. """All values greater than or equal the given value."""
  1588. description_gte: String
  1589. """All values containing the given string."""
  1590. description_contains: String
  1591. """All values not containing the given string."""
  1592. description_not_contains: String
  1593. """All values starting with the given string."""
  1594. description_starts_with: String
  1595. """All values not starting with the given string."""
  1596. description_not_starts_with: String
  1597. """All values ending with the given string."""
  1598. description_ends_with: String
  1599. """All values not ending with the given string."""
  1600. description_not_ends_with: String
  1601. }
  1602. input ExerciseWhereUniqueInput {
  1603. id: ID
  1604. }
  1605. type Format implements Node {
  1606. id: ID!
  1607. name: String!
  1608. description: String!
  1609. }
  1610. """A connection to a list of items."""
  1611. type FormatConnection {
  1612. """Information to aid in pagination."""
  1613. pageInfo: PageInfo!
  1614. """A list of edges."""
  1615. edges: [FormatEdge]!
  1616. aggregate: AggregateFormat!
  1617. }
  1618. input FormatCreateInput {
  1619. id: ID
  1620. name: String!
  1621. description: String!
  1622. }
  1623. input FormatCreateOneInput {
  1624. create: FormatCreateInput
  1625. connect: FormatWhereUniqueInput
  1626. }
  1627. """An edge in a connection."""
  1628. type FormatEdge {
  1629. """The item at the end of the edge."""
  1630. node: Format!
  1631. """A cursor for use in pagination."""
  1632. cursor: String!
  1633. }
  1634. enum FormatOrderByInput {
  1635. id_ASC
  1636. id_DESC
  1637. name_ASC
  1638. name_DESC
  1639. description_ASC
  1640. description_DESC
  1641. }
  1642. type FormatPreviousValues {
  1643. id: ID!
  1644. name: String!
  1645. description: String!
  1646. }
  1647. type FormatSubscriptionPayload {
  1648. mutation: MutationType!
  1649. node: Format
  1650. updatedFields: [String!]
  1651. previousValues: FormatPreviousValues
  1652. }
  1653. input FormatSubscriptionWhereInput {
  1654. """Logical AND on all given filters."""
  1655. AND: [FormatSubscriptionWhereInput!]
  1656. """Logical OR on all given filters."""
  1657. OR: [FormatSubscriptionWhereInput!]
  1658. """Logical NOT on all given filters combined by AND."""
  1659. NOT: [FormatSubscriptionWhereInput!]
  1660. """The subscription event gets dispatched when it's listed in mutation_in"""
  1661. mutation_in: [MutationType!]
  1662. """
  1663. The subscription event gets only dispatched when one of the updated fields names is included in this list
  1664. """
  1665. updatedFields_contains: String
  1666. """
  1667. The subscription event gets only dispatched when all of the field names included in this list have been updated
  1668. """
  1669. updatedFields_contains_every: [String!]
  1670. """
  1671. The subscription event gets only dispatched when some of the field names included in this list have been updated
  1672. """
  1673. updatedFields_contains_some: [String!]
  1674. node: FormatWhereInput
  1675. }
  1676. input FormatUpdateDataInput {
  1677. name: String
  1678. description: String
  1679. }
  1680. input FormatUpdateInput {
  1681. name: String
  1682. description: String
  1683. }
  1684. input FormatUpdateManyMutationInput {
  1685. name: String
  1686. description: String
  1687. }
  1688. input FormatUpdateOneRequiredInput {
  1689. create: FormatCreateInput
  1690. connect: FormatWhereUniqueInput
  1691. update: FormatUpdateDataInput
  1692. upsert: FormatUpsertNestedInput
  1693. }
  1694. input FormatUpsertNestedInput {
  1695. update: FormatUpdateDataInput!
  1696. create: FormatCreateInput!
  1697. }
  1698. input FormatWhereInput {
  1699. """Logical AND on all given filters."""
  1700. AND: [FormatWhereInput!]
  1701. """Logical OR on all given filters."""
  1702. OR: [FormatWhereInput!]
  1703. """Logical NOT on all given filters combined by AND."""
  1704. NOT: [FormatWhereInput!]
  1705. id: ID
  1706. """All values that are not equal to given value."""
  1707. id_not: ID
  1708. """All values that are contained in given list."""
  1709. id_in: [ID!]
  1710. """All values that are not contained in given list."""
  1711. id_not_in: [ID!]
  1712. """All values less than the given value."""
  1713. id_lt: ID
  1714. """All values less than or equal the given value."""
  1715. id_lte: ID
  1716. """All values greater than the given value."""
  1717. id_gt: ID
  1718. """All values greater than or equal the given value."""
  1719. id_gte: ID
  1720. """All values containing the given string."""
  1721. id_contains: ID
  1722. """All values not containing the given string."""
  1723. id_not_contains: ID
  1724. """All values starting with the given string."""
  1725. id_starts_with: ID
  1726. """All values not starting with the given string."""
  1727. id_not_starts_with: ID
  1728. """All values ending with the given string."""
  1729. id_ends_with: ID
  1730. """All values not ending with the given string."""
  1731. id_not_ends_with: ID
  1732. name: String
  1733. """All values that are not equal to given value."""
  1734. name_not: String
  1735. """All values that are contained in given list."""
  1736. name_in: [String!]
  1737. """All values that are not contained in given list."""
  1738. name_not_in: [String!]
  1739. """All values less than the given value."""
  1740. name_lt: String
  1741. """All values less than or equal the given value."""
  1742. name_lte: String
  1743. """All values greater than the given value."""
  1744. name_gt: String
  1745. """All values greater than or equal the given value."""
  1746. name_gte: String
  1747. """All values containing the given string."""
  1748. name_contains: String
  1749. """All values not containing the given string."""
  1750. name_not_contains: String
  1751. """All values starting with the given string."""
  1752. name_starts_with: String
  1753. """All values not starting with the given string."""
  1754. name_not_starts_with: String
  1755. """All values ending with the given string."""
  1756. name_ends_with: String
  1757. """All values not ending with the given string."""
  1758. name_not_ends_with: String
  1759. description: String
  1760. """All values that are not equal to given value."""
  1761. description_not: String
  1762. """All values that are contained in given list."""
  1763. description_in: [String!]
  1764. """All values that are not contained in given list."""
  1765. description_not_in: [String!]
  1766. """All values less than the given value."""
  1767. description_lt: String
  1768. """All values less than or equal the given value."""
  1769. description_lte: String
  1770. """All values greater than the given value."""
  1771. description_gt: String
  1772. """All values greater than or equal the given value."""
  1773. description_gte: String
  1774. """All values containing the given string."""
  1775. description_contains: String
  1776. """All values not containing the given string."""
  1777. description_not_contains: String
  1778. """All values starting with the given string."""
  1779. description_starts_with: String
  1780. """All values not starting with the given string."""
  1781. description_not_starts_with: String
  1782. """All values ending with the given string."""
  1783. description_ends_with: String
  1784. """All values not ending with the given string."""
  1785. description_not_ends_with: String
  1786. }
  1787. input FormatWhereUniqueInput {
  1788. id: ID
  1789. }
  1790. """
  1791. The `Long` scalar type represents non-fractional signed whole numeric values.
  1792. Long can represent values between -(2^63) and 2^63 - 1.
  1793. """
  1794. scalar Long
  1795. type Mutation {
  1796. createTraining(data: TrainingCreateInput!): Training!
  1797. createBlock(data: BlockCreateInput!): Block!
  1798. createBlockInstance(data: BlockInstanceCreateInput!): BlockInstance!
  1799. createComment(data: CommentCreateInput!): Comment!
  1800. createUser(data: UserCreateInput!): User!
  1801. createTrainingType(data: TrainingTypeCreateInput!): TrainingType!
  1802. createTrack(data: TrackCreateInput!): Track!
  1803. createExercise(data: ExerciseCreateInput!): Exercise!
  1804. createFormat(data: FormatCreateInput!): Format!
  1805. createExerciseInstance(data: ExerciseInstanceCreateInput!): ExerciseInstance!
  1806. createRating(data: RatingCreateInput!): Rating!
  1807. updateTraining(data: TrainingUpdateInput!, where: TrainingWhereUniqueInput!): Training
  1808. updateBlock(data: BlockUpdateInput!, where: BlockWhereUniqueInput!): Block
  1809. updateBlockInstance(data: BlockInstanceUpdateInput!, where: BlockInstanceWhereUniqueInput!): BlockInstance
  1810. updateComment(data: CommentUpdateInput!, where: CommentWhereUniqueInput!): Comment
  1811. updateUser(data: UserUpdateInput!, where: UserWhereUniqueInput!): User
  1812. updateTrainingType(data: TrainingTypeUpdateInput!, where: TrainingTypeWhereUniqueInput!): TrainingType
  1813. updateTrack(data: TrackUpdateInput!, where: TrackWhereUniqueInput!): Track
  1814. updateExercise(data: ExerciseUpdateInput!, where: ExerciseWhereUniqueInput!): Exercise
  1815. updateFormat(data: FormatUpdateInput!, where: FormatWhereUniqueInput!): Format
  1816. updateExerciseInstance(data: ExerciseInstanceUpdateInput!, where: ExerciseInstanceWhereUniqueInput!): ExerciseInstance
  1817. updateRating(data: RatingUpdateInput!, where: RatingWhereUniqueInput!): Rating
  1818. deleteTraining(where: TrainingWhereUniqueInput!): Training
  1819. deleteBlock(where: BlockWhereUniqueInput!): Block
  1820. deleteBlockInstance(where: BlockInstanceWhereUniqueInput!): BlockInstance
  1821. deleteComment(where: CommentWhereUniqueInput!): Comment
  1822. deleteUser(where: UserWhereUniqueInput!): User
  1823. deleteTrainingType(where: TrainingTypeWhereUniqueInput!): TrainingType
  1824. deleteTrack(where: TrackWhereUniqueInput!): Track
  1825. deleteExercise(where: ExerciseWhereUniqueInput!): Exercise
  1826. deleteFormat(where: FormatWhereUniqueInput!): Format
  1827. deleteExerciseInstance(where: ExerciseInstanceWhereUniqueInput!): ExerciseInstance
  1828. deleteRating(where: RatingWhereUniqueInput!): Rating
  1829. upsertTraining(where: TrainingWhereUniqueInput!, create: TrainingCreateInput!, update: TrainingUpdateInput!): Training!
  1830. upsertBlock(where: BlockWhereUniqueInput!, create: BlockCreateInput!, update: BlockUpdateInput!): Block!
  1831. upsertBlockInstance(where: BlockInstanceWhereUniqueInput!, create: BlockInstanceCreateInput!, update: BlockInstanceUpdateInput!): BlockInstance!
  1832. upsertComment(where: CommentWhereUniqueInput!, create: CommentCreateInput!, update: CommentUpdateInput!): Comment!
  1833. upsertUser(where: UserWhereUniqueInput!, create: UserCreateInput!, update: UserUpdateInput!): User!
  1834. upsertTrainingType(where: TrainingTypeWhereUniqueInput!, create: TrainingTypeCreateInput!, update: TrainingTypeUpdateInput!): TrainingType!
  1835. upsertTrack(where: TrackWhereUniqueInput!, create: TrackCreateInput!, update: TrackUpdateInput!): Track!
  1836. upsertExercise(where: ExerciseWhereUniqueInput!, create: ExerciseCreateInput!, update: ExerciseUpdateInput!): Exercise!
  1837. upsertFormat(where: FormatWhereUniqueInput!, create: FormatCreateInput!, update: FormatUpdateInput!): Format!
  1838. upsertExerciseInstance(where: ExerciseInstanceWhereUniqueInput!, create: ExerciseInstanceCreateInput!, update: ExerciseInstanceUpdateInput!): ExerciseInstance!
  1839. upsertRating(where: RatingWhereUniqueInput!, create: RatingCreateInput!, update: RatingUpdateInput!): Rating!
  1840. updateManyTrainings(data: TrainingUpdateManyMutationInput!, where: TrainingWhereInput): BatchPayload!
  1841. updateManyBlocks(data: BlockUpdateManyMutationInput!, where: BlockWhereInput): BatchPayload!
  1842. updateManyBlockInstances(data: BlockInstanceUpdateManyMutationInput!, where: BlockInstanceWhereInput): BatchPayload!
  1843. updateManyComments(data: CommentUpdateManyMutationInput!, where: CommentWhereInput): BatchPayload!
  1844. updateManyUsers(data: UserUpdateManyMutationInput!, where: UserWhereInput): BatchPayload!
  1845. updateManyTrainingTypes(data: TrainingTypeUpdateManyMutationInput!, where: TrainingTypeWhereInput): BatchPayload!
  1846. updateManyTracks(data: TrackUpdateManyMutationInput!, where: TrackWhereInput): BatchPayload!
  1847. updateManyExercises(data: ExerciseUpdateManyMutationInput!, where: ExerciseWhereInput): BatchPayload!
  1848. updateManyFormats(data: FormatUpdateManyMutationInput!, where: FormatWhereInput): BatchPayload!
  1849. updateManyExerciseInstances(data: ExerciseInstanceUpdateManyMutationInput!, where: ExerciseInstanceWhereInput): BatchPayload!
  1850. updateManyRatings(data: RatingUpdateManyMutationInput!, where: RatingWhereInput): BatchPayload!
  1851. deleteManyTrainings(where: TrainingWhereInput): BatchPayload!
  1852. deleteManyBlocks(where: BlockWhereInput): BatchPayload!
  1853. deleteManyBlockInstances(where: BlockInstanceWhereInput): BatchPayload!
  1854. deleteManyComments(where: CommentWhereInput): BatchPayload!
  1855. deleteManyUsers(where: UserWhereInput): BatchPayload!
  1856. deleteManyTrainingTypes(where: TrainingTypeWhereInput): BatchPayload!
  1857. deleteManyTracks(where: TrackWhereInput): BatchPayload!
  1858. deleteManyExercises(where: ExerciseWhereInput): BatchPayload!
  1859. deleteManyFormats(where: FormatWhereInput): BatchPayload!
  1860. deleteManyExerciseInstances(where: ExerciseInstanceWhereInput): BatchPayload!
  1861. deleteManyRatings(where: RatingWhereInput): BatchPayload!
  1862. }
  1863. enum MutationType {
  1864. CREATED
  1865. UPDATED
  1866. DELETED
  1867. }
  1868. """An object with an ID"""
  1869. interface Node {
  1870. """The id of the object."""
  1871. id: ID!
  1872. }
  1873. """Information about pagination in a connection."""
  1874. type PageInfo {
  1875. """When paginating forwards, are there more items?"""
  1876. hasNextPage: Boolean!
  1877. """When paginating backwards, are there more items?"""
  1878. hasPreviousPage: Boolean!
  1879. """When paginating backwards, the cursor to continue."""
  1880. startCursor: String
  1881. """When paginating forwards, the cursor to continue."""
  1882. endCursor: String
  1883. }
  1884. enum Permission {
  1885. ADMIN
  1886. INSTRUCTOR
  1887. }
  1888. type Query {
  1889. trainings(where: TrainingWhereInput, orderBy: TrainingOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Training]!
  1890. blocks(where: BlockWhereInput, orderBy: BlockOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Block]!
  1891. blockInstances(where: BlockInstanceWhereInput, orderBy: BlockInstanceOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [BlockInstance]!
  1892. comments(where: CommentWhereInput, orderBy: CommentOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Comment]!
  1893. users(where: UserWhereInput, orderBy: UserOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [User]!
  1894. trainingTypes(where: TrainingTypeWhereInput, orderBy: TrainingTypeOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [TrainingType]!
  1895. tracks(where: TrackWhereInput, orderBy: TrackOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Track]!
  1896. exercises(where: ExerciseWhereInput, orderBy: ExerciseOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Exercise]!
  1897. formats(where: FormatWhereInput, orderBy: FormatOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Format]!
  1898. exerciseInstances(where: ExerciseInstanceWhereInput, orderBy: ExerciseInstanceOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [ExerciseInstance]!
  1899. ratings(where: RatingWhereInput, orderBy: RatingOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Rating]!
  1900. training(where: TrainingWhereUniqueInput!): Training
  1901. block(where: BlockWhereUniqueInput!): Block
  1902. blockInstance(where: BlockInstanceWhereUniqueInput!): BlockInstance
  1903. comment(where: CommentWhereUniqueInput!): Comment
  1904. user(where: UserWhereUniqueInput!): User
  1905. trainingType(where: TrainingTypeWhereUniqueInput!): TrainingType
  1906. track(where: TrackWhereUniqueInput!): Track
  1907. exercise(where: ExerciseWhereUniqueInput!): Exercise
  1908. format(where: FormatWhereUniqueInput!): Format
  1909. exerciseInstance(where: ExerciseInstanceWhereUniqueInput!): ExerciseInstance
  1910. rating(where: RatingWhereUniqueInput!): Rating
  1911. trainingsConnection(where: TrainingWhereInput, orderBy: TrainingOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): TrainingConnection!
  1912. blocksConnection(where: BlockWhereInput, orderBy: BlockOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): BlockConnection!
  1913. blockInstancesConnection(where: BlockInstanceWhereInput, orderBy: BlockInstanceOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): BlockInstanceConnection!
  1914. commentsConnection(where: CommentWhereInput, orderBy: CommentOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): CommentConnection!
  1915. usersConnection(where: UserWhereInput, orderBy: UserOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): UserConnection!
  1916. trainingTypesConnection(where: TrainingTypeWhereInput, orderBy: TrainingTypeOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): TrainingTypeConnection!
  1917. tracksConnection(where: TrackWhereInput, orderBy: TrackOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): TrackConnection!
  1918. exercisesConnection(where: ExerciseWhereInput, orderBy: ExerciseOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): ExerciseConnection!
  1919. formatsConnection(where: FormatWhereInput, orderBy: FormatOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): FormatConnection!
  1920. exerciseInstancesConnection(where: ExerciseInstanceWhereInput, orderBy: ExerciseInstanceOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): ExerciseInstanceConnection!
  1921. ratingsConnection(where: RatingWhereInput, orderBy: RatingOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): RatingConnection!
  1922. """Fetches an object given its ID"""
  1923. node(
  1924. """The ID of an object"""
  1925. id: ID!
  1926. ): Node
  1927. }
  1928. type Rating implements Node {
  1929. id: ID!
  1930. user: User!
  1931. value: Int!
  1932. comment: String!
  1933. createdAt: DateTime!
  1934. }
  1935. """A connection to a list of items."""
  1936. type RatingConnection {
  1937. """Information to aid in pagination."""
  1938. pageInfo: PageInfo!
  1939. """A list of edges."""
  1940. edges: [RatingEdge]!
  1941. aggregate: AggregateRating!
  1942. }
  1943. input RatingCreateInput {
  1944. id: ID
  1945. value: Int!
  1946. comment: String!
  1947. user: UserCreateOneWithoutRatingsInput!
  1948. }
  1949. input RatingCreateManyInput {
  1950. create: [RatingCreateInput!]
  1951. connect: [RatingWhereUniqueInput!]
  1952. }
  1953. input RatingCreateManyWithoutUserInput {
  1954. create: [RatingCreateWithoutUserInput!]
  1955. connect: [RatingWhereUniqueInput!]
  1956. }
  1957. input RatingCreateWithoutUserInput {
  1958. id: ID
  1959. value: Int!
  1960. comment: String!
  1961. }
  1962. """An edge in a connection."""
  1963. type RatingEdge {
  1964. """The item at the end of the edge."""
  1965. node: Rating!
  1966. """A cursor for use in pagination."""
  1967. cursor: String!
  1968. }
  1969. enum RatingOrderByInput {
  1970. id_ASC
  1971. id_DESC
  1972. value_ASC
  1973. value_DESC
  1974. comment_ASC
  1975. comment_DESC
  1976. createdAt_ASC
  1977. createdAt_DESC
  1978. }
  1979. type RatingPreviousValues {
  1980. id: ID!
  1981. value: Int!
  1982. comment: String!
  1983. createdAt: DateTime!
  1984. }
  1985. input RatingScalarWhereInput {
  1986. """Logical AND on all given filters."""
  1987. AND: [RatingScalarWhereInput!]
  1988. """Logical OR on all given filters."""
  1989. OR: [RatingScalarWhereInput!]
  1990. """Logical NOT on all given filters combined by AND."""
  1991. NOT: [RatingScalarWhereInput!]
  1992. id: ID
  1993. """All values that are not equal to given value."""
  1994. id_not: ID
  1995. """All values that are contained in given list."""
  1996. id_in: [ID!]
  1997. """All values that are not contained in given list."""
  1998. id_not_in: [ID!]
  1999. """All values less than the given value."""
  2000. id_lt: ID
  2001. """All values less than or equal the given value."""
  2002. id_lte: ID
  2003. """All values greater than the given value."""
  2004. id_gt: ID
  2005. """All values greater than or equal the given value."""
  2006. id_gte: ID
  2007. """All values containing the given string."""
  2008. id_contains: ID
  2009. """All values not containing the given string."""
  2010. id_not_contains: ID
  2011. """All values starting with the given string."""
  2012. id_starts_with: ID
  2013. """All values not starting with the given string."""
  2014. id_not_starts_with: ID
  2015. """All values ending with the given string."""
  2016. id_ends_with: ID
  2017. """All values not ending with the given string."""
  2018. id_not_ends_with: ID
  2019. value: Int
  2020. """All values that are not equal to given value."""
  2021. value_not: Int
  2022. """All values that are contained in given list."""
  2023. value_in: [Int!]
  2024. """All values that are not contained in given list."""
  2025. value_not_in: [Int!]
  2026. """All values less than the given value."""
  2027. value_lt: Int
  2028. """All values less than or equal the given value."""
  2029. value_lte: Int
  2030. """All values greater than the given value."""
  2031. value_gt: Int
  2032. """All values greater than or equal the given value."""
  2033. value_gte: Int
  2034. comment: String
  2035. """All values that are not equal to given value."""
  2036. comment_not: String
  2037. """All values that are contained in given list."""
  2038. comment_in: [String!]
  2039. """All values that are not contained in given list."""
  2040. comment_not_in: [String!]
  2041. """All values less than the given value."""
  2042. comment_lt: String
  2043. """All values less than or equal the given value."""
  2044. comment_lte: String
  2045. """All values greater than the given value."""
  2046. comment_gt: String
  2047. """All values greater than or equal the given value."""
  2048. comment_gte: String
  2049. """All values containing the given string."""
  2050. comment_contains: String
  2051. """All values not containing the given string."""
  2052. comment_not_contains: String
  2053. """All values starting with the given string."""
  2054. comment_starts_with: String
  2055. """All values not starting with the given string."""
  2056. comment_not_starts_with: String
  2057. """All values ending with the given string."""
  2058. comment_ends_with: String
  2059. """All values not ending with the given string."""
  2060. comment_not_ends_with: String
  2061. createdAt: DateTime
  2062. """All values that are not equal to given value."""
  2063. createdAt_not: DateTime
  2064. """All values that are contained in given list."""
  2065. createdAt_in: [DateTime!]
  2066. """All values that are not contained in given list."""
  2067. createdAt_not_in: [DateTime!]
  2068. """All values less than the given value."""
  2069. createdAt_lt: DateTime
  2070. """All values less than or equal the given value."""
  2071. createdAt_lte: DateTime
  2072. """All values greater than the given value."""
  2073. createdAt_gt: DateTime
  2074. """All values greater than or equal the given value."""
  2075. createdAt_gte: DateTime
  2076. }
  2077. type RatingSubscriptionPayload {
  2078. mutation: MutationType!
  2079. node: Rating
  2080. updatedFields: [String!]
  2081. previousValues: RatingPreviousValues
  2082. }
  2083. input RatingSubscriptionWhereInput {
  2084. """Logical AND on all given filters."""
  2085. AND: [RatingSubscriptionWhereInput!]
  2086. """Logical OR on all given filters."""
  2087. OR: [RatingSubscriptionWhereInput!]
  2088. """Logical NOT on all given filters combined by AND."""
  2089. NOT: [RatingSubscriptionWhereInput!]
  2090. """The subscription event gets dispatched when it's listed in mutation_in"""
  2091. mutation_in: [MutationType!]
  2092. """
  2093. The subscription event gets only dispatched when one of the updated fields names is included in this list
  2094. """
  2095. updatedFields_contains: String
  2096. """
  2097. The subscription event gets only dispatched when all of the field names included in this list have been updated
  2098. """
  2099. updatedFields_contains_every: [String!]
  2100. """
  2101. The subscription event gets only dispatched when some of the field names included in this list have been updated
  2102. """
  2103. updatedFields_contains_some: [String!]
  2104. node: RatingWhereInput
  2105. }
  2106. input RatingUpdateDataInput {
  2107. value: Int
  2108. comment: String
  2109. user: UserUpdateOneRequiredWithoutRatingsInput
  2110. }
  2111. input RatingUpdateInput {
  2112. value: Int
  2113. comment: String
  2114. user: UserUpdateOneRequiredWithoutRatingsInput
  2115. }
  2116. input RatingUpdateManyDataInput {
  2117. value: Int
  2118. comment: String
  2119. }
  2120. input RatingUpdateManyInput {
  2121. create: [RatingCreateInput!]
  2122. connect: [RatingWhereUniqueInput!]
  2123. set: [RatingWhereUniqueInput!]
  2124. disconnect: [RatingWhereUniqueInput!]
  2125. delete: [RatingWhereUniqueInput!]
  2126. update: [RatingUpdateWithWhereUniqueNestedInput!]
  2127. updateMany: [RatingUpdateManyWithWhereNestedInput!]
  2128. deleteMany: [RatingScalarWhereInput!]
  2129. upsert: [RatingUpsertWithWhereUniqueNestedInput!]
  2130. }
  2131. input RatingUpdateManyMutationInput {
  2132. value: Int
  2133. comment: String
  2134. }
  2135. input RatingUpdateManyWithoutUserInput {
  2136. create: [RatingCreateWithoutUserInput!]
  2137. connect: [RatingWhereUniqueInput!]
  2138. set: [RatingWhereUniqueInput!]
  2139. disconnect: [RatingWhereUniqueInput!]
  2140. delete: [RatingWhereUniqueInput!]
  2141. update: [RatingUpdateWithWhereUniqueWithoutUserInput!]
  2142. updateMany: [RatingUpdateManyWithWhereNestedInput!]
  2143. deleteMany: [RatingScalarWhereInput!]
  2144. upsert: [RatingUpsertWithWhereUniqueWithoutUserInput!]
  2145. }
  2146. input RatingUpdateManyWithWhereNestedInput {
  2147. where: RatingScalarWhereInput!
  2148. data: RatingUpdateManyDataInput!
  2149. }
  2150. input RatingUpdateWithoutUserDataInput {
  2151. value: Int
  2152. comment: String
  2153. }
  2154. input RatingUpdateWithWhereUniqueNestedInput {
  2155. where: RatingWhereUniqueInput!
  2156. data: RatingUpdateDataInput!
  2157. }
  2158. input RatingUpdateWithWhereUniqueWithoutUserInput {
  2159. where: RatingWhereUniqueInput!
  2160. data: RatingUpdateWithoutUserDataInput!
  2161. }
  2162. input RatingUpsertWithWhereUniqueNestedInput {
  2163. where: RatingWhereUniqueInput!
  2164. update: RatingUpdateDataInput!
  2165. create: RatingCreateInput!
  2166. }
  2167. input RatingUpsertWithWhereUniqueWithoutUserInput {
  2168. where: RatingWhereUniqueInput!
  2169. update: RatingUpdateWithoutUserDataInput!
  2170. create: RatingCreateWithoutUserInput!
  2171. }
  2172. input RatingWhereInput {
  2173. """Logical AND on all given filters."""
  2174. AND: [RatingWhereInput!]
  2175. """Logical OR on all given filters."""
  2176. OR: [RatingWhereInput!]
  2177. """Logical NOT on all given filters combined by AND."""
  2178. NOT: [RatingWhereInput!]
  2179. id: ID
  2180. """All values that are not equal to given value."""
  2181. id_not: ID
  2182. """All values that are contained in given list."""
  2183. id_in: [ID!]
  2184. """All values that are not contained in given list."""
  2185. id_not_in: [ID!]
  2186. """All values less than the given value."""
  2187. id_lt: ID
  2188. """All values less than or equal the given value."""
  2189. id_lte: ID
  2190. """All values greater than the given value."""
  2191. id_gt: ID
  2192. """All values greater than or equal the given value."""
  2193. id_gte: ID
  2194. """All values containing the given string."""
  2195. id_contains: ID
  2196. """All values not containing the given string."""
  2197. id_not_contains: ID
  2198. """All values starting with the given string."""
  2199. id_starts_with: ID
  2200. """All values not starting with the given string."""
  2201. id_not_starts_with: ID
  2202. """All values ending with the given string."""
  2203. id_ends_with: ID
  2204. """All values not ending with the given string."""
  2205. id_not_ends_with: ID
  2206. value: Int
  2207. """All values that are not equal to given value."""
  2208. value_not: Int
  2209. """All values that are contained in given list."""
  2210. value_in: [Int!]
  2211. """All values that are not contained in given list."""
  2212. value_not_in: [Int!]
  2213. """All values less than the given value."""
  2214. value_lt: Int
  2215. """All values less than or equal the given value."""
  2216. value_lte: Int
  2217. """All values greater than the given value."""
  2218. value_gt: Int
  2219. """All values greater than or equal the given value."""
  2220. value_gte: Int
  2221. comment: String
  2222. """All values that are not equal to given value."""
  2223. comment_not: String
  2224. """All values that are contained in given list."""
  2225. comment_in: [String!]
  2226. """All values that are not contained in given list."""
  2227. comment_not_in: [String!]
  2228. """All values less than the given value."""
  2229. comment_lt: String
  2230. """All values less than or equal the given value."""
  2231. comment_lte: String
  2232. """All values greater than the given value."""
  2233. comment_gt: String
  2234. """All values greater than or equal the given value."""
  2235. comment_gte: String
  2236. """All values containing the given string."""
  2237. comment_contains: String
  2238. """All values not containing the given string."""
  2239. comment_not_contains: String
  2240. """All values starting with the given string."""
  2241. comment_starts_with: String
  2242. """All values not starting with the given string."""
  2243. comment_not_starts_with: String
  2244. """All values ending with the given string."""
  2245. comment_ends_with: String
  2246. """All values not ending with the given string."""
  2247. comment_not_ends_with: String
  2248. createdAt: DateTime
  2249. """All values that are not equal to given value."""
  2250. createdAt_not: DateTime
  2251. """All values that are contained in given list."""
  2252. createdAt_in: [DateTime!]
  2253. """All values that are not contained in given list."""
  2254. createdAt_not_in: [DateTime!]
  2255. """All values less than the given value."""
  2256. createdAt_lt: DateTime
  2257. """All values less than or equal the given value."""
  2258. createdAt_lte: DateTime
  2259. """All values greater than the given value."""
  2260. createdAt_gt: DateTime
  2261. """All values greater than or equal the given value."""
  2262. createdAt_gte: DateTime
  2263. user: UserWhereInput
  2264. }
  2265. input RatingWhereUniqueInput {
  2266. id: ID
  2267. }
  2268. type Subscription {
  2269. training(where: TrainingSubscriptionWhereInput): TrainingSubscriptionPayload
  2270. block(where: BlockSubscriptionWhereInput): BlockSubscriptionPayload
  2271. blockInstance(where: BlockInstanceSubscriptionWhereInput): BlockInstanceSubscriptionPayload
  2272. comment(where: CommentSubscriptionWhereInput): CommentSubscriptionPayload
  2273. user(where: UserSubscriptionWhereInput): UserSubscriptionPayload
  2274. trainingType(where: TrainingTypeSubscriptionWhereInput): TrainingTypeSubscriptionPayload
  2275. track(where: TrackSubscriptionWhereInput): TrackSubscriptionPayload
  2276. exercise(where: ExerciseSubscriptionWhereInput): ExerciseSubscriptionPayload
  2277. format(where: FormatSubscriptionWhereInput): FormatSubscriptionPayload
  2278. exerciseInstance(where: ExerciseInstanceSubscriptionWhereInput): ExerciseInstanceSubscriptionPayload
  2279. rating(where: RatingSubscriptionWhereInput): RatingSubscriptionPayload
  2280. }
  2281. type Track implements Node {
  2282. id: ID!
  2283. title: String!
  2284. artist: String!
  2285. duration: Int!
  2286. link: String!
  2287. }
  2288. """A connection to a list of items."""
  2289. type TrackConnection {
  2290. """Information to aid in pagination."""
  2291. pageInfo: PageInfo!
  2292. """A list of edges."""
  2293. edges: [TrackEdge]!
  2294. aggregate: AggregateTrack!
  2295. }
  2296. input TrackCreateInput {
  2297. id: ID
  2298. title: String!
  2299. artist: String!
  2300. duration: Int!
  2301. link: String!
  2302. }
  2303. input TrackCreateManyInput {
  2304. create: [TrackCreateInput!]
  2305. connect: [TrackWhereUniqueInput!]
  2306. }
  2307. """An edge in a connection."""
  2308. type TrackEdge {
  2309. """The item at the end of the edge."""
  2310. node: Track!
  2311. """A cursor for use in pagination."""
  2312. cursor: String!
  2313. }
  2314. enum TrackOrderByInput {
  2315. id_ASC
  2316. id_DESC
  2317. title_ASC
  2318. title_DESC
  2319. artist_ASC
  2320. artist_DESC
  2321. duration_ASC
  2322. duration_DESC
  2323. link_ASC
  2324. link_DESC
  2325. }
  2326. type TrackPreviousValues {
  2327. id: ID!
  2328. title: String!
  2329. artist: String!
  2330. duration: Int!
  2331. link: String!
  2332. }
  2333. input TrackScalarWhereInput {
  2334. """Logical AND on all given filters."""
  2335. AND: [TrackScalarWhereInput!]
  2336. """Logical OR on all given filters."""
  2337. OR: [TrackScalarWhereInput!]
  2338. """Logical NOT on all given filters combined by AND."""
  2339. NOT: [TrackScalarWhereInput!]
  2340. id: ID
  2341. """All values that are not equal to given value."""
  2342. id_not: ID
  2343. """All values that are contained in given list."""
  2344. id_in: [ID!]
  2345. """All values that are not contained in given list."""
  2346. id_not_in: [ID!]
  2347. """All values less than the given value."""
  2348. id_lt: ID
  2349. """All values less than or equal the given value."""
  2350. id_lte: ID
  2351. """All values greater than the given value."""
  2352. id_gt: ID
  2353. """All values greater than or equal the given value."""
  2354. id_gte: ID
  2355. """All values containing the given string."""
  2356. id_contains: ID
  2357. """All values not containing the given string."""
  2358. id_not_contains: ID
  2359. """All values starting with the given string."""
  2360. id_starts_with: ID
  2361. """All values not starting with the given string."""
  2362. id_not_starts_with: ID
  2363. """All values ending with the given string."""
  2364. id_ends_with: ID
  2365. """All values not ending with the given string."""
  2366. id_not_ends_with: ID
  2367. title: String
  2368. """All values that are not equal to given value."""
  2369. title_not: String
  2370. """All values that are contained in given list."""
  2371. title_in: [String!]
  2372. """All values that are not contained in given list."""
  2373. title_not_in: [String!]
  2374. """All values less than the given value."""
  2375. title_lt: String
  2376. """All values less than or equal the given value."""
  2377. title_lte: String
  2378. """All values greater than the given value."""
  2379. title_gt: String
  2380. """All values greater than or equal the given value."""
  2381. title_gte: String
  2382. """All values containing the given string."""
  2383. title_contains: String
  2384. """All values not containing the given string."""
  2385. title_not_contains: String
  2386. """All values starting with the given string."""
  2387. title_starts_with: String
  2388. """All values not starting with the given string."""
  2389. title_not_starts_with: String
  2390. """All values ending with the given string."""
  2391. title_ends_with: String
  2392. """All values not ending with the given string."""
  2393. title_not_ends_with: String
  2394. artist: String
  2395. """All values that are not equal to given value."""
  2396. artist_not: String
  2397. """All values that are contained in given list."""
  2398. artist_in: [String!]
  2399. """All values that are not contained in given list."""
  2400. artist_not_in: [String!]
  2401. """All values less than the given value."""
  2402. artist_lt: String
  2403. """All values less than or equal the given value."""
  2404. artist_lte: String
  2405. """All values greater than the given value."""
  2406. artist_gt: String
  2407. """All values greater than or equal the given value."""
  2408. artist_gte: String
  2409. """All values containing the given string."""
  2410. artist_contains: String
  2411. """All values not containing the given string."""
  2412. artist_not_contains: String
  2413. """All values starting with the given string."""
  2414. artist_starts_with: String
  2415. """All values not starting with the given string."""
  2416. artist_not_starts_with: String
  2417. """All values ending with the given string."""
  2418. artist_ends_with: String
  2419. """All values not ending with the given string."""
  2420. artist_not_ends_with: String
  2421. duration: Int
  2422. """All values that are not equal to given value."""
  2423. duration_not: Int
  2424. """All values that are contained in given list."""
  2425. duration_in: [Int!]
  2426. """All values that are not contained in given list."""
  2427. duration_not_in: [Int!]
  2428. """All values less than the given value."""
  2429. duration_lt: Int
  2430. """All values less than or equal the given value."""
  2431. duration_lte: Int
  2432. """All values greater than the given value."""
  2433. duration_gt: Int
  2434. """All values greater than or equal the given value."""
  2435. duration_gte: Int
  2436. link: String
  2437. """All values that are not equal to given value."""
  2438. link_not: String
  2439. """All values that are contained in given list."""
  2440. link_in: [String!]
  2441. """All values that are not contained in given list."""
  2442. link_not_in: [String!]
  2443. """All values less than the given value."""
  2444. link_lt: String
  2445. """All values less than or equal the given value."""
  2446. link_lte: String
  2447. """All values greater than the given value."""
  2448. link_gt: String
  2449. """All values greater than or equal the given value."""
  2450. link_gte: String
  2451. """All values containing the given string."""
  2452. link_contains: String
  2453. """All values not containing the given string."""
  2454. link_not_contains: String
  2455. """All values starting with the given string."""
  2456. link_starts_with: String
  2457. """All values not starting with the given string."""
  2458. link_not_starts_with: String
  2459. """All values ending with the given string."""
  2460. link_ends_with: String
  2461. """All values not ending with the given string."""
  2462. link_not_ends_with: String
  2463. }
  2464. type TrackSubscriptionPayload {
  2465. mutation: MutationType!
  2466. node: Track
  2467. updatedFields: [String!]
  2468. previousValues: TrackPreviousValues
  2469. }
  2470. input TrackSubscriptionWhereInput {
  2471. """Logical AND on all given filters."""
  2472. AND: [TrackSubscriptionWhereInput!]
  2473. """Logical OR on all given filters."""
  2474. OR: [TrackSubscriptionWhereInput!]
  2475. """Logical NOT on all given filters combined by AND."""
  2476. NOT: [TrackSubscriptionWhereInput!]
  2477. """The subscription event gets dispatched when it's listed in mutation_in"""
  2478. mutation_in: [MutationType!]
  2479. """
  2480. The subscription event gets only dispatched when one of the updated fields names is included in this list
  2481. """
  2482. updatedFields_contains: String
  2483. """
  2484. The subscription event gets only dispatched when all of the field names included in this list have been updated
  2485. """
  2486. updatedFields_contains_every: [String!]
  2487. """
  2488. The subscription event gets only dispatched when some of the field names included in this list have been updated
  2489. """
  2490. updatedFields_contains_some: [String!]
  2491. node: TrackWhereInput
  2492. }
  2493. input TrackUpdateDataInput {
  2494. title: String
  2495. artist: String
  2496. duration: Int
  2497. link: String
  2498. }
  2499. input TrackUpdateInput {
  2500. title: String
  2501. artist: String
  2502. duration: Int
  2503. link: String
  2504. }
  2505. input TrackUpdateManyDataInput {
  2506. title: String
  2507. artist: String
  2508. duration: Int
  2509. link: String
  2510. }
  2511. input TrackUpdateManyInput {
  2512. create: [TrackCreateInput!]
  2513. connect: [TrackWhereUniqueInput!]
  2514. set: [TrackWhereUniqueInput!]
  2515. disconnect: [TrackWhereUniqueInput!]
  2516. delete: [TrackWhereUniqueInput!]
  2517. update: [TrackUpdateWithWhereUniqueNestedInput!]
  2518. updateMany: [TrackUpdateManyWithWhereNestedInput!]
  2519. deleteMany: [TrackScalarWhereInput!]
  2520. upsert: [TrackUpsertWithWhereUniqueNestedInput!]
  2521. }
  2522. input TrackUpdateManyMutationInput {
  2523. title: String
  2524. artist: String
  2525. duration: Int
  2526. link: String
  2527. }
  2528. input TrackUpdateManyWithWhereNestedInput {
  2529. where: TrackScalarWhereInput!
  2530. data: TrackUpdateManyDataInput!
  2531. }
  2532. input TrackUpdateWithWhereUniqueNestedInput {
  2533. where: TrackWhereUniqueInput!
  2534. data: TrackUpdateDataInput!
  2535. }
  2536. input TrackUpsertWithWhereUniqueNestedInput {
  2537. where: TrackWhereUniqueInput!
  2538. update: TrackUpdateDataInput!
  2539. create: TrackCreateInput!
  2540. }
  2541. input TrackWhereInput {
  2542. """Logical AND on all given filters."""
  2543. AND: [TrackWhereInput!]
  2544. """Logical OR on all given filters."""
  2545. OR: [TrackWhereInput!]
  2546. """Logical NOT on all given filters combined by AND."""
  2547. NOT: [TrackWhereInput!]
  2548. id: ID
  2549. """All values that are not equal to given value."""
  2550. id_not: ID
  2551. """All values that are contained in given list."""
  2552. id_in: [ID!]
  2553. """All values that are not contained in given list."""
  2554. id_not_in: [ID!]
  2555. """All values less than the given value."""
  2556. id_lt: ID
  2557. """All values less than or equal the given value."""
  2558. id_lte: ID
  2559. """All values greater than the given value."""
  2560. id_gt: ID
  2561. """All values greater than or equal the given value."""
  2562. id_gte: ID
  2563. """All values containing the given string."""
  2564. id_contains: ID
  2565. """All values not containing the given string."""
  2566. id_not_contains: ID
  2567. """All values starting with the given string."""
  2568. id_starts_with: ID
  2569. """All values not starting with the given string."""
  2570. id_not_starts_with: ID
  2571. """All values ending with the given string."""
  2572. id_ends_with: ID
  2573. """All values not ending with the given string."""
  2574. id_not_ends_with: ID
  2575. title: String
  2576. """All values that are not equal to given value."""
  2577. title_not: String
  2578. """All values that are contained in given list."""
  2579. title_in: [String!]
  2580. """All values that are not contained in given list."""
  2581. title_not_in: [String!]
  2582. """All values less than the given value."""
  2583. title_lt: String
  2584. """All values less than or equal the given value."""
  2585. title_lte: String
  2586. """All values greater than the given value."""
  2587. title_gt: String
  2588. """All values greater than or equal the given value."""
  2589. title_gte: String
  2590. """All values containing the given string."""
  2591. title_contains: String
  2592. """All values not containing the given string."""
  2593. title_not_contains: String
  2594. """All values starting with the given string."""
  2595. title_starts_with: String
  2596. """All values not starting with the given string."""
  2597. title_not_starts_with: String
  2598. """All values ending with the given string."""
  2599. title_ends_with: String
  2600. """All values not ending with the given string."""
  2601. title_not_ends_with: String
  2602. artist: String
  2603. """All values that are not equal to given value."""
  2604. artist_not: String
  2605. """All values that are contained in given list."""
  2606. artist_in: [String!]
  2607. """All values that are not contained in given list."""
  2608. artist_not_in: [String!]
  2609. """All values less than the given value."""
  2610. artist_lt: String
  2611. """All values less than or equal the given value."""
  2612. artist_lte: String
  2613. """All values greater than the given value."""
  2614. artist_gt: String
  2615. """All values greater than or equal the given value."""
  2616. artist_gte: String
  2617. """All values containing the given string."""
  2618. artist_contains: String
  2619. """All values not containing the given string."""
  2620. artist_not_contains: String
  2621. """All values starting with the given string."""
  2622. artist_starts_with: String
  2623. """All values not starting with the given string."""
  2624. artist_not_starts_with: String
  2625. """All values ending with the given string."""
  2626. artist_ends_with: String
  2627. """All values not ending with the given string."""
  2628. artist_not_ends_with: String
  2629. duration: Int
  2630. """All values that are not equal to given value."""
  2631. duration_not: Int
  2632. """All values that are contained in given list."""
  2633. duration_in: [Int!]
  2634. """All values that are not contained in given list."""
  2635. duration_not_in: [Int!]
  2636. """All values less than the given value."""
  2637. duration_lt: Int
  2638. """All values less than or equal the given value."""
  2639. duration_lte: Int
  2640. """All values greater than the given value."""
  2641. duration_gt: Int
  2642. """All values greater than or equal the given value."""
  2643. duration_gte: Int
  2644. link: String
  2645. """All values that are not equal to given value."""
  2646. link_not: String
  2647. """All values that are contained in given list."""
  2648. link_in: [String!]
  2649. """All values that are not contained in given list."""
  2650. link_not_in: [String!]
  2651. """All values less than the given value."""
  2652. link_lt: String
  2653. """All values less than or equal the given value."""
  2654. link_lte: String
  2655. """All values greater than the given value."""
  2656. link_gt: String
  2657. """All values greater than or equal the given value."""
  2658. link_gte: String
  2659. """All values containing the given string."""
  2660. link_contains: String
  2661. """All values not containing the given string."""
  2662. link_not_contains: String
  2663. """All values starting with the given string."""
  2664. link_starts_with: String
  2665. """All values not starting with the given string."""
  2666. link_not_starts_with: String
  2667. """All values ending with the given string."""
  2668. link_ends_with: String
  2669. """All values not ending with the given string."""
  2670. link_not_ends_with: String
  2671. }
  2672. input TrackWhereUniqueInput {
  2673. id: ID
  2674. }
  2675. type Training implements Node {
  2676. id: ID!
  2677. title: String!
  2678. type: TrainingType!
  2679. createdAt: DateTime!
  2680. trainingDate: DateTime!
  2681. location: String!
  2682. registrations(where: UserWhereInput, orderBy: UserOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [User!]
  2683. attendance: Int
  2684. ratings(where: RatingWhereInput, orderBy: RatingOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Rating!]
  2685. published: Boolean!
  2686. blocks(where: BlockInstanceWhereInput, orderBy: BlockInstanceOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [BlockInstance!]
  2687. }
  2688. """A connection to a list of items."""
  2689. type TrainingConnection {
  2690. """Information to aid in pagination."""
  2691. pageInfo: PageInfo!
  2692. """A list of edges."""
  2693. edges: [TrainingEdge]!
  2694. aggregate: AggregateTraining!
  2695. }
  2696. input TrainingCreateInput {
  2697. id: ID
  2698. title: String!
  2699. trainingDate: DateTime!
  2700. location: String!
  2701. attendance: Int
  2702. published: Boolean!
  2703. type: TrainingTypeCreateOneInput!
  2704. registrations: UserCreateManyInput
  2705. ratings: RatingCreateManyInput
  2706. blocks: BlockInstanceCreateManyWithoutParentTrainingInput
  2707. }
  2708. input TrainingCreateOneWithoutBlocksInput {
  2709. create: TrainingCreateWithoutBlocksInput
  2710. connect: TrainingWhereUniqueInput
  2711. }
  2712. input TrainingCreateWithoutBlocksInput {
  2713. id: ID
  2714. title: String!
  2715. trainingDate: DateTime!
  2716. location: String!
  2717. attendance: Int
  2718. published: Boolean!
  2719. type: TrainingTypeCreateOneInput!
  2720. registrations: UserCreateManyInput
  2721. ratings: RatingCreateManyInput
  2722. }
  2723. """An edge in a connection."""
  2724. type TrainingEdge {
  2725. """The item at the end of the edge."""
  2726. node: Training!
  2727. """A cursor for use in pagination."""
  2728. cursor: String!
  2729. }
  2730. enum TrainingOrderByInput {
  2731. id_ASC
  2732. id_DESC
  2733. title_ASC
  2734. title_DESC
  2735. createdAt_ASC
  2736. createdAt_DESC
  2737. trainingDate_ASC
  2738. trainingDate_DESC
  2739. location_ASC
  2740. location_DESC
  2741. attendance_ASC
  2742. attendance_DESC
  2743. published_ASC
  2744. published_DESC
  2745. }
  2746. type TrainingPreviousValues {
  2747. id: ID!
  2748. title: String!
  2749. createdAt: DateTime!
  2750. trainingDate: DateTime!
  2751. location: String!
  2752. attendance: Int
  2753. published: Boolean!
  2754. }
  2755. type TrainingSubscriptionPayload {
  2756. mutation: MutationType!
  2757. node: Training
  2758. updatedFields: [String!]
  2759. previousValues: TrainingPreviousValues
  2760. }
  2761. input TrainingSubscriptionWhereInput {
  2762. """Logical AND on all given filters."""
  2763. AND: [TrainingSubscriptionWhereInput!]
  2764. """Logical OR on all given filters."""
  2765. OR: [TrainingSubscriptionWhereInput!]
  2766. """Logical NOT on all given filters combined by AND."""
  2767. NOT: [TrainingSubscriptionWhereInput!]
  2768. """The subscription event gets dispatched when it's listed in mutation_in"""
  2769. mutation_in: [MutationType!]
  2770. """
  2771. The subscription event gets only dispatched when one of the updated fields names is included in this list
  2772. """
  2773. updatedFields_contains: String
  2774. """
  2775. The subscription event gets only dispatched when all of the field names included in this list have been updated
  2776. """
  2777. updatedFields_contains_every: [String!]
  2778. """
  2779. The subscription event gets only dispatched when some of the field names included in this list have been updated
  2780. """
  2781. updatedFields_contains_some: [String!]
  2782. node: TrainingWhereInput
  2783. }
  2784. type TrainingType implements Node {
  2785. id: ID!
  2786. name: String!
  2787. description: String!
  2788. }
  2789. """A connection to a list of items."""
  2790. type TrainingTypeConnection {
  2791. """Information to aid in pagination."""
  2792. pageInfo: PageInfo!
  2793. """A list of edges."""
  2794. edges: [TrainingTypeEdge]!
  2795. aggregate: AggregateTrainingType!
  2796. }
  2797. input TrainingTypeCreateInput {
  2798. id: ID
  2799. name: String!
  2800. description: String!
  2801. }
  2802. input TrainingTypeCreateOneInput {
  2803. create: TrainingTypeCreateInput
  2804. connect: TrainingTypeWhereUniqueInput
  2805. }
  2806. """An edge in a connection."""
  2807. type TrainingTypeEdge {
  2808. """The item at the end of the edge."""
  2809. node: TrainingType!
  2810. """A cursor for use in pagination."""
  2811. cursor: String!
  2812. }
  2813. enum TrainingTypeOrderByInput {
  2814. id_ASC
  2815. id_DESC
  2816. name_ASC
  2817. name_DESC
  2818. description_ASC
  2819. description_DESC
  2820. }
  2821. type TrainingTypePreviousValues {
  2822. id: ID!
  2823. name: String!
  2824. description: String!
  2825. }
  2826. type TrainingTypeSubscriptionPayload {
  2827. mutation: MutationType!
  2828. node: TrainingType
  2829. updatedFields: [String!]
  2830. previousValues: TrainingTypePreviousValues
  2831. }
  2832. input TrainingTypeSubscriptionWhereInput {
  2833. """Logical AND on all given filters."""
  2834. AND: [TrainingTypeSubscriptionWhereInput!]
  2835. """Logical OR on all given filters."""
  2836. OR: [TrainingTypeSubscriptionWhereInput!]
  2837. """Logical NOT on all given filters combined by AND."""
  2838. NOT: [TrainingTypeSubscriptionWhereInput!]
  2839. """The subscription event gets dispatched when it's listed in mutation_in"""
  2840. mutation_in: [MutationType!]
  2841. """
  2842. The subscription event gets only dispatched when one of the updated fields names is included in this list
  2843. """
  2844. updatedFields_contains: String
  2845. """
  2846. The subscription event gets only dispatched when all of the field names included in this list have been updated
  2847. """
  2848. updatedFields_contains_every: [String!]
  2849. """
  2850. The subscription event gets only dispatched when some of the field names included in this list have been updated
  2851. """
  2852. updatedFields_contains_some: [String!]
  2853. node: TrainingTypeWhereInput
  2854. }
  2855. input TrainingTypeUpdateDataInput {
  2856. name: String
  2857. description: String
  2858. }
  2859. input TrainingTypeUpdateInput {
  2860. name: String
  2861. description: String
  2862. }
  2863. input TrainingTypeUpdateManyMutationInput {
  2864. name: String
  2865. description: String
  2866. }
  2867. input TrainingTypeUpdateOneRequiredInput {
  2868. create: TrainingTypeCreateInput
  2869. connect: TrainingTypeWhereUniqueInput
  2870. update: TrainingTypeUpdateDataInput
  2871. upsert: TrainingTypeUpsertNestedInput
  2872. }
  2873. input TrainingTypeUpsertNestedInput {
  2874. update: TrainingTypeUpdateDataInput!
  2875. create: TrainingTypeCreateInput!
  2876. }
  2877. input TrainingTypeWhereInput {
  2878. """Logical AND on all given filters."""
  2879. AND: [TrainingTypeWhereInput!]
  2880. """Logical OR on all given filters."""
  2881. OR: [TrainingTypeWhereInput!]
  2882. """Logical NOT on all given filters combined by AND."""
  2883. NOT: [TrainingTypeWhereInput!]
  2884. id: ID
  2885. """All values that are not equal to given value."""
  2886. id_not: ID
  2887. """All values that are contained in given list."""
  2888. id_in: [ID!]
  2889. """All values that are not contained in given list."""
  2890. id_not_in: [ID!]
  2891. """All values less than the given value."""
  2892. id_lt: ID
  2893. """All values less than or equal the given value."""
  2894. id_lte: ID
  2895. """All values greater than the given value."""
  2896. id_gt: ID
  2897. """All values greater than or equal the given value."""
  2898. id_gte: ID
  2899. """All values containing the given string."""
  2900. id_contains: ID
  2901. """All values not containing the given string."""
  2902. id_not_contains: ID
  2903. """All values starting with the given string."""
  2904. id_starts_with: ID
  2905. """All values not starting with the given string."""
  2906. id_not_starts_with: ID
  2907. """All values ending with the given string."""
  2908. id_ends_with: ID
  2909. """All values not ending with the given string."""
  2910. id_not_ends_with: ID
  2911. name: String
  2912. """All values that are not equal to given value."""
  2913. name_not: String
  2914. """All values that are contained in given list."""
  2915. name_in: [String!]
  2916. """All values that are not contained in given list."""
  2917. name_not_in: [String!]
  2918. """All values less than the given value."""
  2919. name_lt: String
  2920. """All values less than or equal the given value."""
  2921. name_lte: String
  2922. """All values greater than the given value."""
  2923. name_gt: String
  2924. """All values greater than or equal the given value."""
  2925. name_gte: String
  2926. """All values containing the given string."""
  2927. name_contains: String
  2928. """All values not containing the given string."""
  2929. name_not_contains: String
  2930. """All values starting with the given string."""
  2931. name_starts_with: String
  2932. """All values not starting with the given string."""
  2933. name_not_starts_with: String
  2934. """All values ending with the given string."""
  2935. name_ends_with: String
  2936. """All values not ending with the given string."""
  2937. name_not_ends_with: String
  2938. description: String
  2939. """All values that are not equal to given value."""
  2940. description_not: String
  2941. """All values that are contained in given list."""
  2942. description_in: [String!]
  2943. """All values that are not contained in given list."""
  2944. description_not_in: [String!]
  2945. """All values less than the given value."""
  2946. description_lt: String
  2947. """All values less than or equal the given value."""
  2948. description_lte: String
  2949. """All values greater than the given value."""
  2950. description_gt: String
  2951. """All values greater than or equal the given value."""
  2952. description_gte: String
  2953. """All values containing the given string."""
  2954. description_contains: String
  2955. """All values not containing the given string."""
  2956. description_not_contains: String
  2957. """All values starting with the given string."""
  2958. description_starts_with: String
  2959. """All values not starting with the given string."""
  2960. description_not_starts_with: String
  2961. """All values ending with the given string."""
  2962. description_ends_with: String
  2963. """All values not ending with the given string."""
  2964. description_not_ends_with: String
  2965. }
  2966. input TrainingTypeWhereUniqueInput {
  2967. id: ID
  2968. name: String
  2969. }
  2970. input TrainingUpdateInput {
  2971. title: String
  2972. trainingDate: DateTime
  2973. location: String
  2974. attendance: Int
  2975. published: Boolean
  2976. type: TrainingTypeUpdateOneRequiredInput
  2977. registrations: UserUpdateManyInput
  2978. ratings: RatingUpdateManyInput
  2979. blocks: BlockInstanceUpdateManyWithoutParentTrainingInput
  2980. }
  2981. input TrainingUpdateManyMutationInput {
  2982. title: String
  2983. trainingDate: DateTime
  2984. location: String
  2985. attendance: Int
  2986. published: Boolean
  2987. }
  2988. input TrainingUpdateOneWithoutBlocksInput {
  2989. create: TrainingCreateWithoutBlocksInput
  2990. connect: TrainingWhereUniqueInput
  2991. disconnect: Boolean
  2992. delete: Boolean
  2993. update: TrainingUpdateWithoutBlocksDataInput
  2994. upsert: TrainingUpsertWithoutBlocksInput
  2995. }
  2996. input TrainingUpdateWithoutBlocksDataInput {
  2997. title: String
  2998. trainingDate: DateTime
  2999. location: String
  3000. attendance: Int
  3001. published: Boolean
  3002. type: TrainingTypeUpdateOneRequiredInput
  3003. registrations: UserUpdateManyInput
  3004. ratings: RatingUpdateManyInput
  3005. }
  3006. input TrainingUpsertWithoutBlocksInput {
  3007. update: TrainingUpdateWithoutBlocksDataInput!
  3008. create: TrainingCreateWithoutBlocksInput!
  3009. }
  3010. input TrainingWhereInput {
  3011. """Logical AND on all given filters."""
  3012. AND: [TrainingWhereInput!]
  3013. """Logical OR on all given filters."""
  3014. OR: [TrainingWhereInput!]
  3015. """Logical NOT on all given filters combined by AND."""
  3016. NOT: [TrainingWhereInput!]
  3017. id: ID
  3018. """All values that are not equal to given value."""
  3019. id_not: ID
  3020. """All values that are contained in given list."""
  3021. id_in: [ID!]
  3022. """All values that are not contained in given list."""
  3023. id_not_in: [ID!]
  3024. """All values less than the given value."""
  3025. id_lt: ID
  3026. """All values less than or equal the given value."""
  3027. id_lte: ID
  3028. """All values greater than the given value."""
  3029. id_gt: ID
  3030. """All values greater than or equal the given value."""
  3031. id_gte: ID
  3032. """All values containing the given string."""
  3033. id_contains: ID
  3034. """All values not containing the given string."""
  3035. id_not_contains: ID
  3036. """All values starting with the given string."""
  3037. id_starts_with: ID
  3038. """All values not starting with the given string."""
  3039. id_not_starts_with: ID
  3040. """All values ending with the given string."""
  3041. id_ends_with: ID
  3042. """All values not ending with the given string."""
  3043. id_not_ends_with: ID
  3044. title: String
  3045. """All values that are not equal to given value."""
  3046. title_not: String
  3047. """All values that are contained in given list."""
  3048. title_in: [String!]
  3049. """All values that are not contained in given list."""
  3050. title_not_in: [String!]
  3051. """All values less than the given value."""
  3052. title_lt: String
  3053. """All values less than or equal the given value."""
  3054. title_lte: String
  3055. """All values greater than the given value."""
  3056. title_gt: String
  3057. """All values greater than or equal the given value."""
  3058. title_gte: String
  3059. """All values containing the given string."""
  3060. title_contains: String
  3061. """All values not containing the given string."""
  3062. title_not_contains: String
  3063. """All values starting with the given string."""
  3064. title_starts_with: String
  3065. """All values not starting with the given string."""
  3066. title_not_starts_with: String
  3067. """All values ending with the given string."""
  3068. title_ends_with: String
  3069. """All values not ending with the given string."""
  3070. title_not_ends_with: String
  3071. createdAt: DateTime
  3072. """All values that are not equal to given value."""
  3073. createdAt_not: DateTime
  3074. """All values that are contained in given list."""
  3075. createdAt_in: [DateTime!]
  3076. """All values that are not contained in given list."""
  3077. createdAt_not_in: [DateTime!]
  3078. """All values less than the given value."""
  3079. createdAt_lt: DateTime
  3080. """All values less than or equal the given value."""
  3081. createdAt_lte: DateTime
  3082. """All values greater than the given value."""
  3083. createdAt_gt: DateTime
  3084. """All values greater than or equal the given value."""
  3085. createdAt_gte: DateTime
  3086. trainingDate: DateTime
  3087. """All values that are not equal to given value."""
  3088. trainingDate_not: DateTime
  3089. """All values that are contained in given list."""
  3090. trainingDate_in: [DateTime!]
  3091. """All values that are not contained in given list."""
  3092. trainingDate_not_in: [DateTime!]
  3093. """All values less than the given value."""
  3094. trainingDate_lt: DateTime
  3095. """All values less than or equal the given value."""
  3096. trainingDate_lte: DateTime
  3097. """All values greater than the given value."""
  3098. trainingDate_gt: DateTime
  3099. """All values greater than or equal the given value."""
  3100. trainingDate_gte: DateTime
  3101. location: String
  3102. """All values that are not equal to given value."""
  3103. location_not: String
  3104. """All values that are contained in given list."""
  3105. location_in: [String!]
  3106. """All values that are not contained in given list."""
  3107. location_not_in: [String!]
  3108. """All values less than the given value."""
  3109. location_lt: String
  3110. """All values less than or equal the given value."""
  3111. location_lte: String
  3112. """All values greater than the given value."""
  3113. location_gt: String
  3114. """All values greater than or equal the given value."""
  3115. location_gte: String
  3116. """All values containing the given string."""
  3117. location_contains: String
  3118. """All values not containing the given string."""
  3119. location_not_contains: String
  3120. """All values starting with the given string."""
  3121. location_starts_with: String
  3122. """All values not starting with the given string."""
  3123. location_not_starts_with: String
  3124. """All values ending with the given string."""
  3125. location_ends_with: String
  3126. """All values not ending with the given string."""
  3127. location_not_ends_with: String
  3128. attendance: Int
  3129. """All values that are not equal to given value."""
  3130. attendance_not: Int
  3131. """All values that are contained in given list."""
  3132. attendance_in: [Int!]
  3133. """All values that are not contained in given list."""
  3134. attendance_not_in: [Int!]
  3135. """All values less than the given value."""
  3136. attendance_lt: Int
  3137. """All values less than or equal the given value."""
  3138. attendance_lte: Int
  3139. """All values greater than the given value."""
  3140. attendance_gt: Int
  3141. """All values greater than or equal the given value."""
  3142. attendance_gte: Int
  3143. published: Boolean
  3144. """All values that are not equal to given value."""
  3145. published_not: Boolean
  3146. type: TrainingTypeWhereInput
  3147. registrations_every: UserWhereInput
  3148. registrations_some: UserWhereInput
  3149. registrations_none: UserWhereInput
  3150. ratings_every: RatingWhereInput
  3151. ratings_some: RatingWhereInput
  3152. ratings_none: RatingWhereInput
  3153. blocks_every: BlockInstanceWhereInput
  3154. blocks_some: BlockInstanceWhereInput
  3155. blocks_none: BlockInstanceWhereInput
  3156. }
  3157. input TrainingWhereUniqueInput {
  3158. id: ID
  3159. }
  3160. type User implements Node {
  3161. id: ID!
  3162. email: String!
  3163. name: String!
  3164. password: String!
  3165. resetToken: String
  3166. resetTokenExpiry: Float
  3167. createdAt: DateTime!
  3168. comments(where: CommentWhereInput, orderBy: CommentOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Comment!]
  3169. ratings(where: RatingWhereInput, orderBy: RatingOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Rating!]
  3170. permissions: [Permission!]!
  3171. interests: [String!]!
  3172. }
  3173. """A connection to a list of items."""
  3174. type UserConnection {
  3175. """Information to aid in pagination."""
  3176. pageInfo: PageInfo!
  3177. """A list of edges."""
  3178. edges: [UserEdge]!
  3179. aggregate: AggregateUser!
  3180. }
  3181. input UserCreateInput {
  3182. id: ID
  3183. email: String!
  3184. name: String!
  3185. password: String!
  3186. resetToken: String
  3187. resetTokenExpiry: Float
  3188. permissions: UserCreatepermissionsInput
  3189. interests: UserCreateinterestsInput
  3190. comments: CommentCreateManyWithoutAuthorInput
  3191. ratings: RatingCreateManyWithoutUserInput
  3192. }
  3193. input UserCreateinterestsInput {
  3194. set: [String!]
  3195. }
  3196. input UserCreateManyInput {
  3197. create: [UserCreateInput!]
  3198. connect: [UserWhereUniqueInput!]
  3199. }
  3200. input UserCreateOneWithoutCommentsInput {
  3201. create: UserCreateWithoutCommentsInput
  3202. connect: UserWhereUniqueInput
  3203. }
  3204. input UserCreateOneWithoutRatingsInput {
  3205. create: UserCreateWithoutRatingsInput
  3206. connect: UserWhereUniqueInput
  3207. }
  3208. input UserCreatepermissionsInput {
  3209. set: [Permission!]
  3210. }
  3211. input UserCreateWithoutCommentsInput {
  3212. id: ID
  3213. email: String!
  3214. name: String!
  3215. password: String!
  3216. resetToken: String
  3217. resetTokenExpiry: Float
  3218. permissions: UserCreatepermissionsInput
  3219. interests: UserCreateinterestsInput
  3220. ratings: RatingCreateManyWithoutUserInput
  3221. }
  3222. input UserCreateWithoutRatingsInput {
  3223. id: ID
  3224. email: String!
  3225. name: String!
  3226. password: String!
  3227. resetToken: String
  3228. resetTokenExpiry: Float
  3229. permissions: UserCreatepermissionsInput
  3230. interests: UserCreateinterestsInput
  3231. comments: CommentCreateManyWithoutAuthorInput
  3232. }
  3233. """An edge in a connection."""
  3234. type UserEdge {
  3235. """The item at the end of the edge."""
  3236. node: User!
  3237. """A cursor for use in pagination."""
  3238. cursor: String!
  3239. }
  3240. enum UserOrderByInput {
  3241. id_ASC
  3242. id_DESC
  3243. email_ASC
  3244. email_DESC
  3245. name_ASC
  3246. name_DESC
  3247. password_ASC
  3248. password_DESC
  3249. resetToken_ASC
  3250. resetToken_DESC
  3251. resetTokenExpiry_ASC
  3252. resetTokenExpiry_DESC
  3253. createdAt_ASC
  3254. createdAt_DESC
  3255. }
  3256. type UserPreviousValues {
  3257. id: ID!
  3258. email: String!
  3259. name: String!
  3260. password: String!
  3261. resetToken: String
  3262. resetTokenExpiry: Float
  3263. createdAt: DateTime!
  3264. permissions: [Permission!]!
  3265. interests: [String!]!
  3266. }
  3267. input UserScalarWhereInput {
  3268. """Logical AND on all given filters."""
  3269. AND: [UserScalarWhereInput!]
  3270. """Logical OR on all given filters."""
  3271. OR: [UserScalarWhereInput!]
  3272. """Logical NOT on all given filters combined by AND."""
  3273. NOT: [UserScalarWhereInput!]
  3274. id: ID
  3275. """All values that are not equal to given value."""
  3276. id_not: ID
  3277. """All values that are contained in given list."""
  3278. id_in: [ID!]
  3279. """All values that are not contained in given list."""
  3280. id_not_in: [ID!]
  3281. """All values less than the given value."""
  3282. id_lt: ID
  3283. """All values less than or equal the given value."""
  3284. id_lte: ID
  3285. """All values greater than the given value."""
  3286. id_gt: ID
  3287. """All values greater than or equal the given value."""
  3288. id_gte: ID
  3289. """All values containing the given string."""
  3290. id_contains: ID
  3291. """All values not containing the given string."""
  3292. id_not_contains: ID
  3293. """All values starting with the given string."""
  3294. id_starts_with: ID
  3295. """All values not starting with the given string."""
  3296. id_not_starts_with: ID
  3297. """All values ending with the given string."""
  3298. id_ends_with: ID
  3299. """All values not ending with the given string."""
  3300. id_not_ends_with: ID
  3301. email: String
  3302. """All values that are not equal to given value."""
  3303. email_not: String
  3304. """All values that are contained in given list."""
  3305. email_in: [String!]
  3306. """All values that are not contained in given list."""
  3307. email_not_in: [String!]
  3308. """All values less than the given value."""
  3309. email_lt: String
  3310. """All values less than or equal the given value."""
  3311. email_lte: String
  3312. """All values greater than the given value."""
  3313. email_gt: String
  3314. """All values greater than or equal the given value."""
  3315. email_gte: String
  3316. """All values containing the given string."""
  3317. email_contains: String
  3318. """All values not containing the given string."""
  3319. email_not_contains: String
  3320. """All values starting with the given string."""
  3321. email_starts_with: String
  3322. """All values not starting with the given string."""
  3323. email_not_starts_with: String
  3324. """All values ending with the given string."""
  3325. email_ends_with: String
  3326. """All values not ending with the given string."""
  3327. email_not_ends_with: String
  3328. name: String
  3329. """All values that are not equal to given value."""
  3330. name_not: String
  3331. """All values that are contained in given list."""
  3332. name_in: [String!]
  3333. """All values that are not contained in given list."""
  3334. name_not_in: [String!]
  3335. """All values less than the given value."""
  3336. name_lt: String
  3337. """All values less than or equal the given value."""
  3338. name_lte: String
  3339. """All values greater than the given value."""
  3340. name_gt: String
  3341. """All values greater than or equal the given value."""
  3342. name_gte: String
  3343. """All values containing the given string."""
  3344. name_contains: String
  3345. """All values not containing the given string."""
  3346. name_not_contains: String
  3347. """All values starting with the given string."""
  3348. name_starts_with: String
  3349. """All values not starting with the given string."""
  3350. name_not_starts_with: String
  3351. """All values ending with the given string."""
  3352. name_ends_with: String
  3353. """All values not ending with the given string."""
  3354. name_not_ends_with: String
  3355. password: String
  3356. """All values that are not equal to given value."""
  3357. password_not: String
  3358. """All values that are contained in given list."""
  3359. password_in: [String!]
  3360. """All values that are not contained in given list."""
  3361. password_not_in: [String!]
  3362. """All values less than the given value."""
  3363. password_lt: String
  3364. """All values less than or equal the given value."""
  3365. password_lte: String
  3366. """All values greater than the given value."""
  3367. password_gt: String
  3368. """All values greater than or equal the given value."""
  3369. password_gte: String
  3370. """All values containing the given string."""
  3371. password_contains: String
  3372. """All values not containing the given string."""
  3373. password_not_contains: String
  3374. """All values starting with the given string."""
  3375. password_starts_with: String
  3376. """All values not starting with the given string."""
  3377. password_not_starts_with: String
  3378. """All values ending with the given string."""
  3379. password_ends_with: String
  3380. """All values not ending with the given string."""
  3381. password_not_ends_with: String
  3382. resetToken: String
  3383. """All values that are not equal to given value."""
  3384. resetToken_not: String
  3385. """All values that are contained in given list."""
  3386. resetToken_in: [String!]
  3387. """All values that are not contained in given list."""
  3388. resetToken_not_in: [String!]
  3389. """All values less than the given value."""
  3390. resetToken_lt: String
  3391. """All values less than or equal the given value."""
  3392. resetToken_lte: String
  3393. """All values greater than the given value."""
  3394. resetToken_gt: String
  3395. """All values greater than or equal the given value."""
  3396. resetToken_gte: String
  3397. """All values containing the given string."""
  3398. resetToken_contains: String
  3399. """All values not containing the given string."""
  3400. resetToken_not_contains: String
  3401. """All values starting with the given string."""
  3402. resetToken_starts_with: String
  3403. """All values not starting with the given string."""
  3404. resetToken_not_starts_with: String
  3405. """All values ending with the given string."""
  3406. resetToken_ends_with: String
  3407. """All values not ending with the given string."""
  3408. resetToken_not_ends_with: String
  3409. resetTokenExpiry: Float
  3410. """All values that are not equal to given value."""
  3411. resetTokenExpiry_not: Float
  3412. """All values that are contained in given list."""
  3413. resetTokenExpiry_in: [Float!]
  3414. """All values that are not contained in given list."""
  3415. resetTokenExpiry_not_in: [Float!]
  3416. """All values less than the given value."""
  3417. resetTokenExpiry_lt: Float
  3418. """All values less than or equal the given value."""
  3419. resetTokenExpiry_lte: Float
  3420. """All values greater than the given value."""
  3421. resetTokenExpiry_gt: Float
  3422. """All values greater than or equal the given value."""
  3423. resetTokenExpiry_gte: Float
  3424. createdAt: DateTime
  3425. """All values that are not equal to given value."""
  3426. createdAt_not: DateTime
  3427. """All values that are contained in given list."""
  3428. createdAt_in: [DateTime!]
  3429. """All values that are not contained in given list."""
  3430. createdAt_not_in: [DateTime!]
  3431. """All values less than the given value."""
  3432. createdAt_lt: DateTime
  3433. """All values less than or equal the given value."""
  3434. createdAt_lte: DateTime
  3435. """All values greater than the given value."""
  3436. createdAt_gt: DateTime
  3437. """All values greater than or equal the given value."""
  3438. createdAt_gte: DateTime
  3439. }
  3440. type UserSubscriptionPayload {
  3441. mutation: MutationType!
  3442. node: User
  3443. updatedFields: [String!]
  3444. previousValues: UserPreviousValues
  3445. }
  3446. input UserSubscriptionWhereInput {
  3447. """Logical AND on all given filters."""
  3448. AND: [UserSubscriptionWhereInput!]
  3449. """Logical OR on all given filters."""
  3450. OR: [UserSubscriptionWhereInput!]
  3451. """Logical NOT on all given filters combined by AND."""
  3452. NOT: [UserSubscriptionWhereInput!]
  3453. """The subscription event gets dispatched when it's listed in mutation_in"""
  3454. mutation_in: [MutationType!]
  3455. """
  3456. The subscription event gets only dispatched when one of the updated fields names is included in this list
  3457. """
  3458. updatedFields_contains: String
  3459. """
  3460. The subscription event gets only dispatched when all of the field names included in this list have been updated
  3461. """
  3462. updatedFields_contains_every: [String!]
  3463. """
  3464. The subscription event gets only dispatched when some of the field names included in this list have been updated
  3465. """
  3466. updatedFields_contains_some: [String!]
  3467. node: UserWhereInput
  3468. }
  3469. input UserUpdateDataInput {
  3470. email: String
  3471. name: String
  3472. password: String
  3473. resetToken: String
  3474. resetTokenExpiry: Float
  3475. permissions: UserUpdatepermissionsInput
  3476. interests: UserUpdateinterestsInput
  3477. comments: CommentUpdateManyWithoutAuthorInput
  3478. ratings: RatingUpdateManyWithoutUserInput
  3479. }
  3480. input UserUpdateInput {
  3481. email: String
  3482. name: String
  3483. password: String
  3484. resetToken: String
  3485. resetTokenExpiry: Float
  3486. permissions: UserUpdatepermissionsInput
  3487. interests: UserUpdateinterestsInput
  3488. comments: CommentUpdateManyWithoutAuthorInput
  3489. ratings: RatingUpdateManyWithoutUserInput
  3490. }
  3491. input UserUpdateinterestsInput {
  3492. set: [String!]
  3493. }
  3494. input UserUpdateManyDataInput {
  3495. email: String
  3496. name: String
  3497. password: String
  3498. resetToken: String
  3499. resetTokenExpiry: Float
  3500. permissions: UserUpdatepermissionsInput
  3501. interests: UserUpdateinterestsInput
  3502. }
  3503. input UserUpdateManyInput {
  3504. create: [UserCreateInput!]
  3505. connect: [UserWhereUniqueInput!]
  3506. set: [UserWhereUniqueInput!]
  3507. disconnect: [UserWhereUniqueInput!]
  3508. delete: [UserWhereUniqueInput!]
  3509. update: [UserUpdateWithWhereUniqueNestedInput!]
  3510. updateMany: [UserUpdateManyWithWhereNestedInput!]
  3511. deleteMany: [UserScalarWhereInput!]
  3512. upsert: [UserUpsertWithWhereUniqueNestedInput!]
  3513. }
  3514. input UserUpdateManyMutationInput {
  3515. email: String
  3516. name: String
  3517. password: String
  3518. resetToken: String
  3519. resetTokenExpiry: Float
  3520. permissions: UserUpdatepermissionsInput
  3521. interests: UserUpdateinterestsInput
  3522. }
  3523. input UserUpdateManyWithWhereNestedInput {
  3524. where: UserScalarWhereInput!
  3525. data: UserUpdateManyDataInput!
  3526. }
  3527. input UserUpdateOneRequiredWithoutCommentsInput {
  3528. create: UserCreateWithoutCommentsInput
  3529. connect: UserWhereUniqueInput
  3530. update: UserUpdateWithoutCommentsDataInput
  3531. upsert: UserUpsertWithoutCommentsInput
  3532. }
  3533. input UserUpdateOneRequiredWithoutRatingsInput {
  3534. create: UserCreateWithoutRatingsInput
  3535. connect: UserWhereUniqueInput
  3536. update: UserUpdateWithoutRatingsDataInput
  3537. upsert: UserUpsertWithoutRatingsInput
  3538. }
  3539. input UserUpdatepermissionsInput {
  3540. set: [Permission!]
  3541. }
  3542. input UserUpdateWithoutCommentsDataInput {
  3543. email: String
  3544. name: String
  3545. password: String
  3546. resetToken: String
  3547. resetTokenExpiry: Float
  3548. permissions: UserUpdatepermissionsInput
  3549. interests: UserUpdateinterestsInput
  3550. ratings: RatingUpdateManyWithoutUserInput
  3551. }
  3552. input UserUpdateWithoutRatingsDataInput {
  3553. email: String
  3554. name: String
  3555. password: String
  3556. resetToken: String
  3557. resetTokenExpiry: Float
  3558. permissions: UserUpdatepermissionsInput
  3559. interests: UserUpdateinterestsInput
  3560. comments: CommentUpdateManyWithoutAuthorInput
  3561. }
  3562. input UserUpdateWithWhereUniqueNestedInput {
  3563. where: UserWhereUniqueInput!
  3564. data: UserUpdateDataInput!
  3565. }
  3566. input UserUpsertWithoutCommentsInput {
  3567. update: UserUpdateWithoutCommentsDataInput!
  3568. create: UserCreateWithoutCommentsInput!
  3569. }
  3570. input UserUpsertWithoutRatingsInput {
  3571. update: UserUpdateWithoutRatingsDataInput!
  3572. create: UserCreateWithoutRatingsInput!
  3573. }
  3574. input UserUpsertWithWhereUniqueNestedInput {
  3575. where: UserWhereUniqueInput!
  3576. update: UserUpdateDataInput!
  3577. create: UserCreateInput!
  3578. }
  3579. input UserWhereInput {
  3580. """Logical AND on all given filters."""
  3581. AND: [UserWhereInput!]
  3582. """Logical OR on all given filters."""
  3583. OR: [UserWhereInput!]
  3584. """Logical NOT on all given filters combined by AND."""
  3585. NOT: [UserWhereInput!]
  3586. id: ID
  3587. """All values that are not equal to given value."""
  3588. id_not: ID
  3589. """All values that are contained in given list."""
  3590. id_in: [ID!]
  3591. """All values that are not contained in given list."""
  3592. id_not_in: [ID!]
  3593. """All values less than the given value."""
  3594. id_lt: ID
  3595. """All values less than or equal the given value."""
  3596. id_lte: ID
  3597. """All values greater than the given value."""
  3598. id_gt: ID
  3599. """All values greater than or equal the given value."""
  3600. id_gte: ID
  3601. """All values containing the given string."""
  3602. id_contains: ID
  3603. """All values not containing the given string."""
  3604. id_not_contains: ID
  3605. """All values starting with the given string."""
  3606. id_starts_with: ID
  3607. """All values not starting with the given string."""
  3608. id_not_starts_with: ID
  3609. """All values ending with the given string."""
  3610. id_ends_with: ID
  3611. """All values not ending with the given string."""
  3612. id_not_ends_with: ID
  3613. email: String
  3614. """All values that are not equal to given value."""
  3615. email_not: String
  3616. """All values that are contained in given list."""
  3617. email_in: [String!]
  3618. """All values that are not contained in given list."""
  3619. email_not_in: [String!]
  3620. """All values less than the given value."""
  3621. email_lt: String
  3622. """All values less than or equal the given value."""
  3623. email_lte: String
  3624. """All values greater than the given value."""
  3625. email_gt: String
  3626. """All values greater than or equal the given value."""
  3627. email_gte: String
  3628. """All values containing the given string."""
  3629. email_contains: String
  3630. """All values not containing the given string."""
  3631. email_not_contains: String
  3632. """All values starting with the given string."""
  3633. email_starts_with: String
  3634. """All values not starting with the given string."""
  3635. email_not_starts_with: String
  3636. """All values ending with the given string."""
  3637. email_ends_with: String
  3638. """All values not ending with the given string."""
  3639. email_not_ends_with: String
  3640. name: String
  3641. """All values that are not equal to given value."""
  3642. name_not: String
  3643. """All values that are contained in given list."""
  3644. name_in: [String!]
  3645. """All values that are not contained in given list."""
  3646. name_not_in: [String!]
  3647. """All values less than the given value."""
  3648. name_lt: String
  3649. """All values less than or equal the given value."""
  3650. name_lte: String
  3651. """All values greater than the given value."""
  3652. name_gt: String
  3653. """All values greater than or equal the given value."""
  3654. name_gte: String
  3655. """All values containing the given string."""
  3656. name_contains: String
  3657. """All values not containing the given string."""
  3658. name_not_contains: String
  3659. """All values starting with the given string."""
  3660. name_starts_with: String
  3661. """All values not starting with the given string."""
  3662. name_not_starts_with: String
  3663. """All values ending with the given string."""
  3664. name_ends_with: String
  3665. """All values not ending with the given string."""
  3666. name_not_ends_with: String
  3667. password: String
  3668. """All values that are not equal to given value."""
  3669. password_not: String
  3670. """All values that are contained in given list."""
  3671. password_in: [String!]
  3672. """All values that are not contained in given list."""
  3673. password_not_in: [String!]
  3674. """All values less than the given value."""
  3675. password_lt: String
  3676. """All values less than or equal the given value."""
  3677. password_lte: String
  3678. """All values greater than the given value."""
  3679. password_gt: String
  3680. """All values greater than or equal the given value."""
  3681. password_gte: String
  3682. """All values containing the given string."""
  3683. password_contains: String
  3684. """All values not containing the given string."""
  3685. password_not_contains: String
  3686. """All values starting with the given string."""
  3687. password_starts_with: String
  3688. """All values not starting with the given string."""
  3689. password_not_starts_with: String
  3690. """All values ending with the given string."""
  3691. password_ends_with: String
  3692. """All values not ending with the given string."""
  3693. password_not_ends_with: String
  3694. resetToken: String
  3695. """All values that are not equal to given value."""
  3696. resetToken_not: String
  3697. """All values that are contained in given list."""
  3698. resetToken_in: [String!]
  3699. """All values that are not contained in given list."""
  3700. resetToken_not_in: [String!]
  3701. """All values less than the given value."""
  3702. resetToken_lt: String
  3703. """All values less than or equal the given value."""
  3704. resetToken_lte: String
  3705. """All values greater than the given value."""
  3706. resetToken_gt: String
  3707. """All values greater than or equal the given value."""
  3708. resetToken_gte: String
  3709. """All values containing the given string."""
  3710. resetToken_contains: String
  3711. """All values not containing the given string."""
  3712. resetToken_not_contains: String
  3713. """All values starting with the given string."""
  3714. resetToken_starts_with: String
  3715. """All values not starting with the given string."""
  3716. resetToken_not_starts_with: String
  3717. """All values ending with the given string."""
  3718. resetToken_ends_with: String
  3719. """All values not ending with the given string."""
  3720. resetToken_not_ends_with: String
  3721. resetTokenExpiry: Float
  3722. """All values that are not equal to given value."""
  3723. resetTokenExpiry_not: Float
  3724. """All values that are contained in given list."""
  3725. resetTokenExpiry_in: [Float!]
  3726. """All values that are not contained in given list."""
  3727. resetTokenExpiry_not_in: [Float!]
  3728. """All values less than the given value."""
  3729. resetTokenExpiry_lt: Float
  3730. """All values less than or equal the given value."""
  3731. resetTokenExpiry_lte: Float
  3732. """All values greater than the given value."""
  3733. resetTokenExpiry_gt: Float
  3734. """All values greater than or equal the given value."""
  3735. resetTokenExpiry_gte: Float
  3736. createdAt: DateTime
  3737. """All values that are not equal to given value."""
  3738. createdAt_not: DateTime
  3739. """All values that are contained in given list."""
  3740. createdAt_in: [DateTime!]
  3741. """All values that are not contained in given list."""
  3742. createdAt_not_in: [DateTime!]
  3743. """All values less than the given value."""
  3744. createdAt_lt: DateTime
  3745. """All values less than or equal the given value."""
  3746. createdAt_lte: DateTime
  3747. """All values greater than the given value."""
  3748. createdAt_gt: DateTime
  3749. """All values greater than or equal the given value."""
  3750. createdAt_gte: DateTime
  3751. comments_every: CommentWhereInput
  3752. comments_some: CommentWhereInput
  3753. comments_none: CommentWhereInput
  3754. ratings_every: RatingWhereInput
  3755. ratings_some: RatingWhereInput
  3756. ratings_none: RatingWhereInput
  3757. }
  3758. input UserWhereUniqueInput {
  3759. id: ID
  3760. email: String
  3761. }