prisma-schema.js 121 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698
  1. module.exports = {
  2. typeDefs: // Code generated by Prisma (prisma@1.30.1). DO NOT EDIT.
  3. // Please don't change this file manually but run `prisma generate` to update it.
  4. // For more information, please read the docs: https://www.prisma.io/docs/prisma-client/
  5. /* GraphQL */ `type AggregateCharacterization {
  6. count: Int!
  7. }
  8. type AggregateComment {
  9. count: Int!
  10. }
  11. type AggregateDUT {
  12. count: Int!
  13. }
  14. type AggregateEvent {
  15. count: Int!
  16. }
  17. type AggregateFile {
  18. count: Int!
  19. }
  20. type AggregateInstrument {
  21. count: Int!
  22. }
  23. type AggregateInstrumentCommand {
  24. count: Int!
  25. }
  26. type AggregateInstrumentInstance {
  27. count: Int!
  28. }
  29. type AggregateInstrumentParameter {
  30. count: Int!
  31. }
  32. type AggregateMeasurement {
  33. count: Int!
  34. }
  35. type AggregateMeasurementRun {
  36. count: Int!
  37. }
  38. type AggregateMeta {
  39. count: Int!
  40. }
  41. type AggregateProject {
  42. count: Int!
  43. }
  44. type AggregateProjectVersion {
  45. count: Int!
  46. }
  47. type AggregateSetup {
  48. count: Int!
  49. }
  50. type AggregateSetupHardware {
  51. count: Int!
  52. }
  53. type AggregateSetupHardwareInstance {
  54. count: Int!
  55. }
  56. type AggregateUser {
  57. count: Int!
  58. }
  59. type BatchPayload {
  60. count: Long!
  61. }
  62. type Characterization {
  63. id: ID!
  64. name: String!
  65. projectVersion: ProjectVersion!
  66. measurementRuns(where: MeasurementRunWhereInput, orderBy: MeasurementRunOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [MeasurementRun!]
  67. }
  68. type CharacterizationConnection {
  69. pageInfo: PageInfo!
  70. edges: [CharacterizationEdge]!
  71. aggregate: AggregateCharacterization!
  72. }
  73. input CharacterizationCreateInput {
  74. name: String!
  75. projectVersion: ProjectVersionCreateOneInput!
  76. measurementRuns: MeasurementRunCreateManyInput
  77. }
  78. type CharacterizationEdge {
  79. node: Characterization!
  80. cursor: String!
  81. }
  82. enum CharacterizationOrderByInput {
  83. id_ASC
  84. id_DESC
  85. name_ASC
  86. name_DESC
  87. createdAt_ASC
  88. createdAt_DESC
  89. updatedAt_ASC
  90. updatedAt_DESC
  91. }
  92. type CharacterizationPreviousValues {
  93. id: ID!
  94. name: String!
  95. }
  96. type CharacterizationSubscriptionPayload {
  97. mutation: MutationType!
  98. node: Characterization
  99. updatedFields: [String!]
  100. previousValues: CharacterizationPreviousValues
  101. }
  102. input CharacterizationSubscriptionWhereInput {
  103. mutation_in: [MutationType!]
  104. updatedFields_contains: String
  105. updatedFields_contains_every: [String!]
  106. updatedFields_contains_some: [String!]
  107. node: CharacterizationWhereInput
  108. AND: [CharacterizationSubscriptionWhereInput!]
  109. OR: [CharacterizationSubscriptionWhereInput!]
  110. NOT: [CharacterizationSubscriptionWhereInput!]
  111. }
  112. input CharacterizationUpdateInput {
  113. name: String
  114. projectVersion: ProjectVersionUpdateOneRequiredInput
  115. measurementRuns: MeasurementRunUpdateManyInput
  116. }
  117. input CharacterizationUpdateManyMutationInput {
  118. name: String
  119. }
  120. input CharacterizationWhereInput {
  121. id: ID
  122. id_not: ID
  123. id_in: [ID!]
  124. id_not_in: [ID!]
  125. id_lt: ID
  126. id_lte: ID
  127. id_gt: ID
  128. id_gte: ID
  129. id_contains: ID
  130. id_not_contains: ID
  131. id_starts_with: ID
  132. id_not_starts_with: ID
  133. id_ends_with: ID
  134. id_not_ends_with: ID
  135. name: String
  136. name_not: String
  137. name_in: [String!]
  138. name_not_in: [String!]
  139. name_lt: String
  140. name_lte: String
  141. name_gt: String
  142. name_gte: String
  143. name_contains: String
  144. name_not_contains: String
  145. name_starts_with: String
  146. name_not_starts_with: String
  147. name_ends_with: String
  148. name_not_ends_with: String
  149. projectVersion: ProjectVersionWhereInput
  150. measurementRuns_every: MeasurementRunWhereInput
  151. measurementRuns_some: MeasurementRunWhereInput
  152. measurementRuns_none: MeasurementRunWhereInput
  153. AND: [CharacterizationWhereInput!]
  154. OR: [CharacterizationWhereInput!]
  155. NOT: [CharacterizationWhereInput!]
  156. }
  157. input CharacterizationWhereUniqueInput {
  158. id: ID
  159. }
  160. type Comment {
  161. id: ID!
  162. text: String
  163. createdAt: DateTime!
  164. author: User!
  165. }
  166. type CommentConnection {
  167. pageInfo: PageInfo!
  168. edges: [CommentEdge]!
  169. aggregate: AggregateComment!
  170. }
  171. input CommentCreateInput {
  172. text: String
  173. author: UserCreateOneWithoutCommentsInput!
  174. }
  175. input CommentCreateManyInput {
  176. create: [CommentCreateInput!]
  177. connect: [CommentWhereUniqueInput!]
  178. }
  179. input CommentCreateManyWithoutAuthorInput {
  180. create: [CommentCreateWithoutAuthorInput!]
  181. connect: [CommentWhereUniqueInput!]
  182. }
  183. input CommentCreateWithoutAuthorInput {
  184. text: String
  185. }
  186. type CommentEdge {
  187. node: Comment!
  188. cursor: String!
  189. }
  190. enum CommentOrderByInput {
  191. id_ASC
  192. id_DESC
  193. text_ASC
  194. text_DESC
  195. createdAt_ASC
  196. createdAt_DESC
  197. updatedAt_ASC
  198. updatedAt_DESC
  199. }
  200. type CommentPreviousValues {
  201. id: ID!
  202. text: String
  203. createdAt: DateTime!
  204. }
  205. input CommentScalarWhereInput {
  206. id: ID
  207. id_not: ID
  208. id_in: [ID!]
  209. id_not_in: [ID!]
  210. id_lt: ID
  211. id_lte: ID
  212. id_gt: ID
  213. id_gte: ID
  214. id_contains: ID
  215. id_not_contains: ID
  216. id_starts_with: ID
  217. id_not_starts_with: ID
  218. id_ends_with: ID
  219. id_not_ends_with: ID
  220. text: String
  221. text_not: String
  222. text_in: [String!]
  223. text_not_in: [String!]
  224. text_lt: String
  225. text_lte: String
  226. text_gt: String
  227. text_gte: String
  228. text_contains: String
  229. text_not_contains: String
  230. text_starts_with: String
  231. text_not_starts_with: String
  232. text_ends_with: String
  233. text_not_ends_with: String
  234. createdAt: DateTime
  235. createdAt_not: DateTime
  236. createdAt_in: [DateTime!]
  237. createdAt_not_in: [DateTime!]
  238. createdAt_lt: DateTime
  239. createdAt_lte: DateTime
  240. createdAt_gt: DateTime
  241. createdAt_gte: DateTime
  242. AND: [CommentScalarWhereInput!]
  243. OR: [CommentScalarWhereInput!]
  244. NOT: [CommentScalarWhereInput!]
  245. }
  246. type CommentSubscriptionPayload {
  247. mutation: MutationType!
  248. node: Comment
  249. updatedFields: [String!]
  250. previousValues: CommentPreviousValues
  251. }
  252. input CommentSubscriptionWhereInput {
  253. mutation_in: [MutationType!]
  254. updatedFields_contains: String
  255. updatedFields_contains_every: [String!]
  256. updatedFields_contains_some: [String!]
  257. node: CommentWhereInput
  258. AND: [CommentSubscriptionWhereInput!]
  259. OR: [CommentSubscriptionWhereInput!]
  260. NOT: [CommentSubscriptionWhereInput!]
  261. }
  262. input CommentUpdateDataInput {
  263. text: String
  264. author: UserUpdateOneRequiredWithoutCommentsInput
  265. }
  266. input CommentUpdateInput {
  267. text: String
  268. author: UserUpdateOneRequiredWithoutCommentsInput
  269. }
  270. input CommentUpdateManyDataInput {
  271. text: String
  272. }
  273. input CommentUpdateManyInput {
  274. create: [CommentCreateInput!]
  275. update: [CommentUpdateWithWhereUniqueNestedInput!]
  276. upsert: [CommentUpsertWithWhereUniqueNestedInput!]
  277. delete: [CommentWhereUniqueInput!]
  278. connect: [CommentWhereUniqueInput!]
  279. set: [CommentWhereUniqueInput!]
  280. disconnect: [CommentWhereUniqueInput!]
  281. deleteMany: [CommentScalarWhereInput!]
  282. updateMany: [CommentUpdateManyWithWhereNestedInput!]
  283. }
  284. input CommentUpdateManyMutationInput {
  285. text: String
  286. }
  287. input CommentUpdateManyWithoutAuthorInput {
  288. create: [CommentCreateWithoutAuthorInput!]
  289. delete: [CommentWhereUniqueInput!]
  290. connect: [CommentWhereUniqueInput!]
  291. set: [CommentWhereUniqueInput!]
  292. disconnect: [CommentWhereUniqueInput!]
  293. update: [CommentUpdateWithWhereUniqueWithoutAuthorInput!]
  294. upsert: [CommentUpsertWithWhereUniqueWithoutAuthorInput!]
  295. deleteMany: [CommentScalarWhereInput!]
  296. updateMany: [CommentUpdateManyWithWhereNestedInput!]
  297. }
  298. input CommentUpdateManyWithWhereNestedInput {
  299. where: CommentScalarWhereInput!
  300. data: CommentUpdateManyDataInput!
  301. }
  302. input CommentUpdateWithoutAuthorDataInput {
  303. text: String
  304. }
  305. input CommentUpdateWithWhereUniqueNestedInput {
  306. where: CommentWhereUniqueInput!
  307. data: CommentUpdateDataInput!
  308. }
  309. input CommentUpdateWithWhereUniqueWithoutAuthorInput {
  310. where: CommentWhereUniqueInput!
  311. data: CommentUpdateWithoutAuthorDataInput!
  312. }
  313. input CommentUpsertWithWhereUniqueNestedInput {
  314. where: CommentWhereUniqueInput!
  315. update: CommentUpdateDataInput!
  316. create: CommentCreateInput!
  317. }
  318. input CommentUpsertWithWhereUniqueWithoutAuthorInput {
  319. where: CommentWhereUniqueInput!
  320. update: CommentUpdateWithoutAuthorDataInput!
  321. create: CommentCreateWithoutAuthorInput!
  322. }
  323. input CommentWhereInput {
  324. id: ID
  325. id_not: ID
  326. id_in: [ID!]
  327. id_not_in: [ID!]
  328. id_lt: ID
  329. id_lte: ID
  330. id_gt: ID
  331. id_gte: ID
  332. id_contains: ID
  333. id_not_contains: ID
  334. id_starts_with: ID
  335. id_not_starts_with: ID
  336. id_ends_with: ID
  337. id_not_ends_with: ID
  338. text: String
  339. text_not: String
  340. text_in: [String!]
  341. text_not_in: [String!]
  342. text_lt: String
  343. text_lte: String
  344. text_gt: String
  345. text_gte: String
  346. text_contains: String
  347. text_not_contains: String
  348. text_starts_with: String
  349. text_not_starts_with: String
  350. text_ends_with: String
  351. text_not_ends_with: String
  352. createdAt: DateTime
  353. createdAt_not: DateTime
  354. createdAt_in: [DateTime!]
  355. createdAt_not_in: [DateTime!]
  356. createdAt_lt: DateTime
  357. createdAt_lte: DateTime
  358. createdAt_gt: DateTime
  359. createdAt_gte: DateTime
  360. author: UserWhereInput
  361. AND: [CommentWhereInput!]
  362. OR: [CommentWhereInput!]
  363. NOT: [CommentWhereInput!]
  364. }
  365. input CommentWhereUniqueInput {
  366. id: ID
  367. }
  368. scalar DateTime
  369. type DUT {
  370. id: ID!
  371. name: String!
  372. description: String
  373. project: ProjectVersion!
  374. modifications: [String!]!
  375. }
  376. type DUTConnection {
  377. pageInfo: PageInfo!
  378. edges: [DUTEdge]!
  379. aggregate: AggregateDUT!
  380. }
  381. input DUTCreateInput {
  382. name: String!
  383. description: String
  384. project: ProjectVersionCreateOneInput!
  385. modifications: DUTCreatemodificationsInput
  386. }
  387. input DUTCreatemodificationsInput {
  388. set: [String!]
  389. }
  390. type DUTEdge {
  391. node: DUT!
  392. cursor: String!
  393. }
  394. enum DUTOrderByInput {
  395. id_ASC
  396. id_DESC
  397. name_ASC
  398. name_DESC
  399. description_ASC
  400. description_DESC
  401. createdAt_ASC
  402. createdAt_DESC
  403. updatedAt_ASC
  404. updatedAt_DESC
  405. }
  406. type DUTPreviousValues {
  407. id: ID!
  408. name: String!
  409. description: String
  410. modifications: [String!]!
  411. }
  412. type DUTSubscriptionPayload {
  413. mutation: MutationType!
  414. node: DUT
  415. updatedFields: [String!]
  416. previousValues: DUTPreviousValues
  417. }
  418. input DUTSubscriptionWhereInput {
  419. mutation_in: [MutationType!]
  420. updatedFields_contains: String
  421. updatedFields_contains_every: [String!]
  422. updatedFields_contains_some: [String!]
  423. node: DUTWhereInput
  424. AND: [DUTSubscriptionWhereInput!]
  425. OR: [DUTSubscriptionWhereInput!]
  426. NOT: [DUTSubscriptionWhereInput!]
  427. }
  428. input DUTUpdateInput {
  429. name: String
  430. description: String
  431. project: ProjectVersionUpdateOneRequiredInput
  432. modifications: DUTUpdatemodificationsInput
  433. }
  434. input DUTUpdateManyMutationInput {
  435. name: String
  436. description: String
  437. modifications: DUTUpdatemodificationsInput
  438. }
  439. input DUTUpdatemodificationsInput {
  440. set: [String!]
  441. }
  442. input DUTWhereInput {
  443. id: ID
  444. id_not: ID
  445. id_in: [ID!]
  446. id_not_in: [ID!]
  447. id_lt: ID
  448. id_lte: ID
  449. id_gt: ID
  450. id_gte: ID
  451. id_contains: ID
  452. id_not_contains: ID
  453. id_starts_with: ID
  454. id_not_starts_with: ID
  455. id_ends_with: ID
  456. id_not_ends_with: ID
  457. name: String
  458. name_not: String
  459. name_in: [String!]
  460. name_not_in: [String!]
  461. name_lt: String
  462. name_lte: String
  463. name_gt: String
  464. name_gte: String
  465. name_contains: String
  466. name_not_contains: String
  467. name_starts_with: String
  468. name_not_starts_with: String
  469. name_ends_with: String
  470. name_not_ends_with: String
  471. description: String
  472. description_not: String
  473. description_in: [String!]
  474. description_not_in: [String!]
  475. description_lt: String
  476. description_lte: String
  477. description_gt: String
  478. description_gte: String
  479. description_contains: String
  480. description_not_contains: String
  481. description_starts_with: String
  482. description_not_starts_with: String
  483. description_ends_with: String
  484. description_not_ends_with: String
  485. project: ProjectVersionWhereInput
  486. AND: [DUTWhereInput!]
  487. OR: [DUTWhereInput!]
  488. NOT: [DUTWhereInput!]
  489. }
  490. input DUTWhereUniqueInput {
  491. id: ID
  492. }
  493. type Event {
  494. id: ID!
  495. json: String!
  496. when: DateTime!
  497. }
  498. type EventConnection {
  499. pageInfo: PageInfo!
  500. edges: [EventEdge]!
  501. aggregate: AggregateEvent!
  502. }
  503. input EventCreateInput {
  504. json: String!
  505. when: DateTime!
  506. }
  507. input EventCreateManyInput {
  508. create: [EventCreateInput!]
  509. connect: [EventWhereUniqueInput!]
  510. }
  511. type EventEdge {
  512. node: Event!
  513. cursor: String!
  514. }
  515. enum EventOrderByInput {
  516. id_ASC
  517. id_DESC
  518. json_ASC
  519. json_DESC
  520. when_ASC
  521. when_DESC
  522. createdAt_ASC
  523. createdAt_DESC
  524. updatedAt_ASC
  525. updatedAt_DESC
  526. }
  527. type EventPreviousValues {
  528. id: ID!
  529. json: String!
  530. when: DateTime!
  531. }
  532. input EventScalarWhereInput {
  533. id: ID
  534. id_not: ID
  535. id_in: [ID!]
  536. id_not_in: [ID!]
  537. id_lt: ID
  538. id_lte: ID
  539. id_gt: ID
  540. id_gte: ID
  541. id_contains: ID
  542. id_not_contains: ID
  543. id_starts_with: ID
  544. id_not_starts_with: ID
  545. id_ends_with: ID
  546. id_not_ends_with: ID
  547. json: String
  548. json_not: String
  549. json_in: [String!]
  550. json_not_in: [String!]
  551. json_lt: String
  552. json_lte: String
  553. json_gt: String
  554. json_gte: String
  555. json_contains: String
  556. json_not_contains: String
  557. json_starts_with: String
  558. json_not_starts_with: String
  559. json_ends_with: String
  560. json_not_ends_with: String
  561. when: DateTime
  562. when_not: DateTime
  563. when_in: [DateTime!]
  564. when_not_in: [DateTime!]
  565. when_lt: DateTime
  566. when_lte: DateTime
  567. when_gt: DateTime
  568. when_gte: DateTime
  569. AND: [EventScalarWhereInput!]
  570. OR: [EventScalarWhereInput!]
  571. NOT: [EventScalarWhereInput!]
  572. }
  573. type EventSubscriptionPayload {
  574. mutation: MutationType!
  575. node: Event
  576. updatedFields: [String!]
  577. previousValues: EventPreviousValues
  578. }
  579. input EventSubscriptionWhereInput {
  580. mutation_in: [MutationType!]
  581. updatedFields_contains: String
  582. updatedFields_contains_every: [String!]
  583. updatedFields_contains_some: [String!]
  584. node: EventWhereInput
  585. AND: [EventSubscriptionWhereInput!]
  586. OR: [EventSubscriptionWhereInput!]
  587. NOT: [EventSubscriptionWhereInput!]
  588. }
  589. input EventUpdateDataInput {
  590. json: String
  591. when: DateTime
  592. }
  593. input EventUpdateInput {
  594. json: String
  595. when: DateTime
  596. }
  597. input EventUpdateManyDataInput {
  598. json: String
  599. when: DateTime
  600. }
  601. input EventUpdateManyInput {
  602. create: [EventCreateInput!]
  603. update: [EventUpdateWithWhereUniqueNestedInput!]
  604. upsert: [EventUpsertWithWhereUniqueNestedInput!]
  605. delete: [EventWhereUniqueInput!]
  606. connect: [EventWhereUniqueInput!]
  607. set: [EventWhereUniqueInput!]
  608. disconnect: [EventWhereUniqueInput!]
  609. deleteMany: [EventScalarWhereInput!]
  610. updateMany: [EventUpdateManyWithWhereNestedInput!]
  611. }
  612. input EventUpdateManyMutationInput {
  613. json: String
  614. when: DateTime
  615. }
  616. input EventUpdateManyWithWhereNestedInput {
  617. where: EventScalarWhereInput!
  618. data: EventUpdateManyDataInput!
  619. }
  620. input EventUpdateWithWhereUniqueNestedInput {
  621. where: EventWhereUniqueInput!
  622. data: EventUpdateDataInput!
  623. }
  624. input EventUpsertWithWhereUniqueNestedInput {
  625. where: EventWhereUniqueInput!
  626. update: EventUpdateDataInput!
  627. create: EventCreateInput!
  628. }
  629. input EventWhereInput {
  630. id: ID
  631. id_not: ID
  632. id_in: [ID!]
  633. id_not_in: [ID!]
  634. id_lt: ID
  635. id_lte: ID
  636. id_gt: ID
  637. id_gte: ID
  638. id_contains: ID
  639. id_not_contains: ID
  640. id_starts_with: ID
  641. id_not_starts_with: ID
  642. id_ends_with: ID
  643. id_not_ends_with: ID
  644. json: String
  645. json_not: String
  646. json_in: [String!]
  647. json_not_in: [String!]
  648. json_lt: String
  649. json_lte: String
  650. json_gt: String
  651. json_gte: String
  652. json_contains: String
  653. json_not_contains: String
  654. json_starts_with: String
  655. json_not_starts_with: String
  656. json_ends_with: String
  657. json_not_ends_with: String
  658. when: DateTime
  659. when_not: DateTime
  660. when_in: [DateTime!]
  661. when_not_in: [DateTime!]
  662. when_lt: DateTime
  663. when_lte: DateTime
  664. when_gt: DateTime
  665. when_gte: DateTime
  666. AND: [EventWhereInput!]
  667. OR: [EventWhereInput!]
  668. NOT: [EventWhereInput!]
  669. }
  670. input EventWhereUniqueInput {
  671. id: ID
  672. }
  673. type File {
  674. id: ID!
  675. path: String!
  676. name: String
  677. description: String
  678. filename: String!
  679. mimetype: String!
  680. encoding: String!
  681. size: Int!
  682. }
  683. type FileConnection {
  684. pageInfo: PageInfo!
  685. edges: [FileEdge]!
  686. aggregate: AggregateFile!
  687. }
  688. input FileCreateInput {
  689. path: String!
  690. name: String
  691. description: String
  692. filename: String!
  693. mimetype: String!
  694. encoding: String!
  695. size: Int!
  696. }
  697. input FileCreateManyInput {
  698. create: [FileCreateInput!]
  699. connect: [FileWhereUniqueInput!]
  700. }
  701. type FileEdge {
  702. node: File!
  703. cursor: String!
  704. }
  705. enum FileOrderByInput {
  706. id_ASC
  707. id_DESC
  708. path_ASC
  709. path_DESC
  710. name_ASC
  711. name_DESC
  712. description_ASC
  713. description_DESC
  714. filename_ASC
  715. filename_DESC
  716. mimetype_ASC
  717. mimetype_DESC
  718. encoding_ASC
  719. encoding_DESC
  720. size_ASC
  721. size_DESC
  722. createdAt_ASC
  723. createdAt_DESC
  724. updatedAt_ASC
  725. updatedAt_DESC
  726. }
  727. type FilePreviousValues {
  728. id: ID!
  729. path: String!
  730. name: String
  731. description: String
  732. filename: String!
  733. mimetype: String!
  734. encoding: String!
  735. size: Int!
  736. }
  737. input FileScalarWhereInput {
  738. id: ID
  739. id_not: ID
  740. id_in: [ID!]
  741. id_not_in: [ID!]
  742. id_lt: ID
  743. id_lte: ID
  744. id_gt: ID
  745. id_gte: ID
  746. id_contains: ID
  747. id_not_contains: ID
  748. id_starts_with: ID
  749. id_not_starts_with: ID
  750. id_ends_with: ID
  751. id_not_ends_with: ID
  752. path: String
  753. path_not: String
  754. path_in: [String!]
  755. path_not_in: [String!]
  756. path_lt: String
  757. path_lte: String
  758. path_gt: String
  759. path_gte: String
  760. path_contains: String
  761. path_not_contains: String
  762. path_starts_with: String
  763. path_not_starts_with: String
  764. path_ends_with: String
  765. path_not_ends_with: String
  766. name: String
  767. name_not: String
  768. name_in: [String!]
  769. name_not_in: [String!]
  770. name_lt: String
  771. name_lte: String
  772. name_gt: String
  773. name_gte: String
  774. name_contains: String
  775. name_not_contains: String
  776. name_starts_with: String
  777. name_not_starts_with: String
  778. name_ends_with: String
  779. name_not_ends_with: String
  780. description: String
  781. description_not: String
  782. description_in: [String!]
  783. description_not_in: [String!]
  784. description_lt: String
  785. description_lte: String
  786. description_gt: String
  787. description_gte: String
  788. description_contains: String
  789. description_not_contains: String
  790. description_starts_with: String
  791. description_not_starts_with: String
  792. description_ends_with: String
  793. description_not_ends_with: String
  794. filename: String
  795. filename_not: String
  796. filename_in: [String!]
  797. filename_not_in: [String!]
  798. filename_lt: String
  799. filename_lte: String
  800. filename_gt: String
  801. filename_gte: String
  802. filename_contains: String
  803. filename_not_contains: String
  804. filename_starts_with: String
  805. filename_not_starts_with: String
  806. filename_ends_with: String
  807. filename_not_ends_with: String
  808. mimetype: String
  809. mimetype_not: String
  810. mimetype_in: [String!]
  811. mimetype_not_in: [String!]
  812. mimetype_lt: String
  813. mimetype_lte: String
  814. mimetype_gt: String
  815. mimetype_gte: String
  816. mimetype_contains: String
  817. mimetype_not_contains: String
  818. mimetype_starts_with: String
  819. mimetype_not_starts_with: String
  820. mimetype_ends_with: String
  821. mimetype_not_ends_with: String
  822. encoding: String
  823. encoding_not: String
  824. encoding_in: [String!]
  825. encoding_not_in: [String!]
  826. encoding_lt: String
  827. encoding_lte: String
  828. encoding_gt: String
  829. encoding_gte: String
  830. encoding_contains: String
  831. encoding_not_contains: String
  832. encoding_starts_with: String
  833. encoding_not_starts_with: String
  834. encoding_ends_with: String
  835. encoding_not_ends_with: String
  836. size: Int
  837. size_not: Int
  838. size_in: [Int!]
  839. size_not_in: [Int!]
  840. size_lt: Int
  841. size_lte: Int
  842. size_gt: Int
  843. size_gte: Int
  844. AND: [FileScalarWhereInput!]
  845. OR: [FileScalarWhereInput!]
  846. NOT: [FileScalarWhereInput!]
  847. }
  848. type FileSubscriptionPayload {
  849. mutation: MutationType!
  850. node: File
  851. updatedFields: [String!]
  852. previousValues: FilePreviousValues
  853. }
  854. input FileSubscriptionWhereInput {
  855. mutation_in: [MutationType!]
  856. updatedFields_contains: String
  857. updatedFields_contains_every: [String!]
  858. updatedFields_contains_some: [String!]
  859. node: FileWhereInput
  860. AND: [FileSubscriptionWhereInput!]
  861. OR: [FileSubscriptionWhereInput!]
  862. NOT: [FileSubscriptionWhereInput!]
  863. }
  864. input FileUpdateDataInput {
  865. path: String
  866. name: String
  867. description: String
  868. filename: String
  869. mimetype: String
  870. encoding: String
  871. size: Int
  872. }
  873. input FileUpdateInput {
  874. path: String
  875. name: String
  876. description: String
  877. filename: String
  878. mimetype: String
  879. encoding: String
  880. size: Int
  881. }
  882. input FileUpdateManyDataInput {
  883. path: String
  884. name: String
  885. description: String
  886. filename: String
  887. mimetype: String
  888. encoding: String
  889. size: Int
  890. }
  891. input FileUpdateManyInput {
  892. create: [FileCreateInput!]
  893. update: [FileUpdateWithWhereUniqueNestedInput!]
  894. upsert: [FileUpsertWithWhereUniqueNestedInput!]
  895. delete: [FileWhereUniqueInput!]
  896. connect: [FileWhereUniqueInput!]
  897. set: [FileWhereUniqueInput!]
  898. disconnect: [FileWhereUniqueInput!]
  899. deleteMany: [FileScalarWhereInput!]
  900. updateMany: [FileUpdateManyWithWhereNestedInput!]
  901. }
  902. input FileUpdateManyMutationInput {
  903. path: String
  904. name: String
  905. description: String
  906. filename: String
  907. mimetype: String
  908. encoding: String
  909. size: Int
  910. }
  911. input FileUpdateManyWithWhereNestedInput {
  912. where: FileScalarWhereInput!
  913. data: FileUpdateManyDataInput!
  914. }
  915. input FileUpdateWithWhereUniqueNestedInput {
  916. where: FileWhereUniqueInput!
  917. data: FileUpdateDataInput!
  918. }
  919. input FileUpsertWithWhereUniqueNestedInput {
  920. where: FileWhereUniqueInput!
  921. update: FileUpdateDataInput!
  922. create: FileCreateInput!
  923. }
  924. input FileWhereInput {
  925. id: ID
  926. id_not: ID
  927. id_in: [ID!]
  928. id_not_in: [ID!]
  929. id_lt: ID
  930. id_lte: ID
  931. id_gt: ID
  932. id_gte: ID
  933. id_contains: ID
  934. id_not_contains: ID
  935. id_starts_with: ID
  936. id_not_starts_with: ID
  937. id_ends_with: ID
  938. id_not_ends_with: ID
  939. path: String
  940. path_not: String
  941. path_in: [String!]
  942. path_not_in: [String!]
  943. path_lt: String
  944. path_lte: String
  945. path_gt: String
  946. path_gte: String
  947. path_contains: String
  948. path_not_contains: String
  949. path_starts_with: String
  950. path_not_starts_with: String
  951. path_ends_with: String
  952. path_not_ends_with: String
  953. name: String
  954. name_not: String
  955. name_in: [String!]
  956. name_not_in: [String!]
  957. name_lt: String
  958. name_lte: String
  959. name_gt: String
  960. name_gte: String
  961. name_contains: String
  962. name_not_contains: String
  963. name_starts_with: String
  964. name_not_starts_with: String
  965. name_ends_with: String
  966. name_not_ends_with: String
  967. description: String
  968. description_not: String
  969. description_in: [String!]
  970. description_not_in: [String!]
  971. description_lt: String
  972. description_lte: String
  973. description_gt: String
  974. description_gte: String
  975. description_contains: String
  976. description_not_contains: String
  977. description_starts_with: String
  978. description_not_starts_with: String
  979. description_ends_with: String
  980. description_not_ends_with: String
  981. filename: String
  982. filename_not: String
  983. filename_in: [String!]
  984. filename_not_in: [String!]
  985. filename_lt: String
  986. filename_lte: String
  987. filename_gt: String
  988. filename_gte: String
  989. filename_contains: String
  990. filename_not_contains: String
  991. filename_starts_with: String
  992. filename_not_starts_with: String
  993. filename_ends_with: String
  994. filename_not_ends_with: String
  995. mimetype: String
  996. mimetype_not: String
  997. mimetype_in: [String!]
  998. mimetype_not_in: [String!]
  999. mimetype_lt: String
  1000. mimetype_lte: String
  1001. mimetype_gt: String
  1002. mimetype_gte: String
  1003. mimetype_contains: String
  1004. mimetype_not_contains: String
  1005. mimetype_starts_with: String
  1006. mimetype_not_starts_with: String
  1007. mimetype_ends_with: String
  1008. mimetype_not_ends_with: String
  1009. encoding: String
  1010. encoding_not: String
  1011. encoding_in: [String!]
  1012. encoding_not_in: [String!]
  1013. encoding_lt: String
  1014. encoding_lte: String
  1015. encoding_gt: String
  1016. encoding_gte: String
  1017. encoding_contains: String
  1018. encoding_not_contains: String
  1019. encoding_starts_with: String
  1020. encoding_not_starts_with: String
  1021. encoding_ends_with: String
  1022. encoding_not_ends_with: String
  1023. size: Int
  1024. size_not: Int
  1025. size_in: [Int!]
  1026. size_not_in: [Int!]
  1027. size_lt: Int
  1028. size_lte: Int
  1029. size_gt: Int
  1030. size_gte: Int
  1031. AND: [FileWhereInput!]
  1032. OR: [FileWhereInput!]
  1033. NOT: [FileWhereInput!]
  1034. }
  1035. input FileWhereUniqueInput {
  1036. id: ID
  1037. }
  1038. type Instrument {
  1039. id: ID!
  1040. name: String!
  1041. manufacturer: String!
  1042. description: String
  1043. picture: ID
  1044. documents(where: FileWhereInput, orderBy: FileOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [File!]
  1045. interfaces: [String!]!
  1046. commands(where: InstrumentCommandWhereInput, orderBy: InstrumentCommandOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [InstrumentCommand!]
  1047. parameters(where: InstrumentParameterWhereInput, orderBy: InstrumentParameterOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [InstrumentParameter!]
  1048. instances(where: InstrumentInstanceWhereInput, orderBy: InstrumentInstanceOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [InstrumentInstance!]
  1049. }
  1050. type InstrumentCommand {
  1051. id: ID!
  1052. tag: String!
  1053. name: String
  1054. description: String!
  1055. readString: String
  1056. writeString: String
  1057. subsystem: String
  1058. parameters(where: InstrumentParameterWhereInput, orderBy: InstrumentParameterOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [InstrumentParameter!]
  1059. }
  1060. type InstrumentCommandConnection {
  1061. pageInfo: PageInfo!
  1062. edges: [InstrumentCommandEdge]!
  1063. aggregate: AggregateInstrumentCommand!
  1064. }
  1065. input InstrumentCommandCreateInput {
  1066. tag: String!
  1067. name: String
  1068. description: String!
  1069. readString: String
  1070. writeString: String
  1071. subsystem: String
  1072. parameters: InstrumentParameterCreateManyWithoutCommandsInput
  1073. }
  1074. input InstrumentCommandCreateManyInput {
  1075. create: [InstrumentCommandCreateInput!]
  1076. connect: [InstrumentCommandWhereUniqueInput!]
  1077. }
  1078. input InstrumentCommandCreateManyWithoutParametersInput {
  1079. create: [InstrumentCommandCreateWithoutParametersInput!]
  1080. connect: [InstrumentCommandWhereUniqueInput!]
  1081. }
  1082. input InstrumentCommandCreateWithoutParametersInput {
  1083. tag: String!
  1084. name: String
  1085. description: String!
  1086. readString: String
  1087. writeString: String
  1088. subsystem: String
  1089. }
  1090. type InstrumentCommandEdge {
  1091. node: InstrumentCommand!
  1092. cursor: String!
  1093. }
  1094. enum InstrumentCommandOrderByInput {
  1095. id_ASC
  1096. id_DESC
  1097. tag_ASC
  1098. tag_DESC
  1099. name_ASC
  1100. name_DESC
  1101. description_ASC
  1102. description_DESC
  1103. readString_ASC
  1104. readString_DESC
  1105. writeString_ASC
  1106. writeString_DESC
  1107. subsystem_ASC
  1108. subsystem_DESC
  1109. createdAt_ASC
  1110. createdAt_DESC
  1111. updatedAt_ASC
  1112. updatedAt_DESC
  1113. }
  1114. type InstrumentCommandPreviousValues {
  1115. id: ID!
  1116. tag: String!
  1117. name: String
  1118. description: String!
  1119. readString: String
  1120. writeString: String
  1121. subsystem: String
  1122. }
  1123. input InstrumentCommandScalarWhereInput {
  1124. id: ID
  1125. id_not: ID
  1126. id_in: [ID!]
  1127. id_not_in: [ID!]
  1128. id_lt: ID
  1129. id_lte: ID
  1130. id_gt: ID
  1131. id_gte: ID
  1132. id_contains: ID
  1133. id_not_contains: ID
  1134. id_starts_with: ID
  1135. id_not_starts_with: ID
  1136. id_ends_with: ID
  1137. id_not_ends_with: ID
  1138. tag: String
  1139. tag_not: String
  1140. tag_in: [String!]
  1141. tag_not_in: [String!]
  1142. tag_lt: String
  1143. tag_lte: String
  1144. tag_gt: String
  1145. tag_gte: String
  1146. tag_contains: String
  1147. tag_not_contains: String
  1148. tag_starts_with: String
  1149. tag_not_starts_with: String
  1150. tag_ends_with: String
  1151. tag_not_ends_with: String
  1152. name: String
  1153. name_not: String
  1154. name_in: [String!]
  1155. name_not_in: [String!]
  1156. name_lt: String
  1157. name_lte: String
  1158. name_gt: String
  1159. name_gte: String
  1160. name_contains: String
  1161. name_not_contains: String
  1162. name_starts_with: String
  1163. name_not_starts_with: String
  1164. name_ends_with: String
  1165. name_not_ends_with: String
  1166. description: String
  1167. description_not: String
  1168. description_in: [String!]
  1169. description_not_in: [String!]
  1170. description_lt: String
  1171. description_lte: String
  1172. description_gt: String
  1173. description_gte: String
  1174. description_contains: String
  1175. description_not_contains: String
  1176. description_starts_with: String
  1177. description_not_starts_with: String
  1178. description_ends_with: String
  1179. description_not_ends_with: String
  1180. readString: String
  1181. readString_not: String
  1182. readString_in: [String!]
  1183. readString_not_in: [String!]
  1184. readString_lt: String
  1185. readString_lte: String
  1186. readString_gt: String
  1187. readString_gte: String
  1188. readString_contains: String
  1189. readString_not_contains: String
  1190. readString_starts_with: String
  1191. readString_not_starts_with: String
  1192. readString_ends_with: String
  1193. readString_not_ends_with: String
  1194. writeString: String
  1195. writeString_not: String
  1196. writeString_in: [String!]
  1197. writeString_not_in: [String!]
  1198. writeString_lt: String
  1199. writeString_lte: String
  1200. writeString_gt: String
  1201. writeString_gte: String
  1202. writeString_contains: String
  1203. writeString_not_contains: String
  1204. writeString_starts_with: String
  1205. writeString_not_starts_with: String
  1206. writeString_ends_with: String
  1207. writeString_not_ends_with: String
  1208. subsystem: String
  1209. subsystem_not: String
  1210. subsystem_in: [String!]
  1211. subsystem_not_in: [String!]
  1212. subsystem_lt: String
  1213. subsystem_lte: String
  1214. subsystem_gt: String
  1215. subsystem_gte: String
  1216. subsystem_contains: String
  1217. subsystem_not_contains: String
  1218. subsystem_starts_with: String
  1219. subsystem_not_starts_with: String
  1220. subsystem_ends_with: String
  1221. subsystem_not_ends_with: String
  1222. AND: [InstrumentCommandScalarWhereInput!]
  1223. OR: [InstrumentCommandScalarWhereInput!]
  1224. NOT: [InstrumentCommandScalarWhereInput!]
  1225. }
  1226. type InstrumentCommandSubscriptionPayload {
  1227. mutation: MutationType!
  1228. node: InstrumentCommand
  1229. updatedFields: [String!]
  1230. previousValues: InstrumentCommandPreviousValues
  1231. }
  1232. input InstrumentCommandSubscriptionWhereInput {
  1233. mutation_in: [MutationType!]
  1234. updatedFields_contains: String
  1235. updatedFields_contains_every: [String!]
  1236. updatedFields_contains_some: [String!]
  1237. node: InstrumentCommandWhereInput
  1238. AND: [InstrumentCommandSubscriptionWhereInput!]
  1239. OR: [InstrumentCommandSubscriptionWhereInput!]
  1240. NOT: [InstrumentCommandSubscriptionWhereInput!]
  1241. }
  1242. input InstrumentCommandUpdateDataInput {
  1243. tag: String
  1244. name: String
  1245. description: String
  1246. readString: String
  1247. writeString: String
  1248. subsystem: String
  1249. parameters: InstrumentParameterUpdateManyWithoutCommandsInput
  1250. }
  1251. input InstrumentCommandUpdateInput {
  1252. tag: String
  1253. name: String
  1254. description: String
  1255. readString: String
  1256. writeString: String
  1257. subsystem: String
  1258. parameters: InstrumentParameterUpdateManyWithoutCommandsInput
  1259. }
  1260. input InstrumentCommandUpdateManyDataInput {
  1261. tag: String
  1262. name: String
  1263. description: String
  1264. readString: String
  1265. writeString: String
  1266. subsystem: String
  1267. }
  1268. input InstrumentCommandUpdateManyInput {
  1269. create: [InstrumentCommandCreateInput!]
  1270. update: [InstrumentCommandUpdateWithWhereUniqueNestedInput!]
  1271. upsert: [InstrumentCommandUpsertWithWhereUniqueNestedInput!]
  1272. delete: [InstrumentCommandWhereUniqueInput!]
  1273. connect: [InstrumentCommandWhereUniqueInput!]
  1274. set: [InstrumentCommandWhereUniqueInput!]
  1275. disconnect: [InstrumentCommandWhereUniqueInput!]
  1276. deleteMany: [InstrumentCommandScalarWhereInput!]
  1277. updateMany: [InstrumentCommandUpdateManyWithWhereNestedInput!]
  1278. }
  1279. input InstrumentCommandUpdateManyMutationInput {
  1280. tag: String
  1281. name: String
  1282. description: String
  1283. readString: String
  1284. writeString: String
  1285. subsystem: String
  1286. }
  1287. input InstrumentCommandUpdateManyWithoutParametersInput {
  1288. create: [InstrumentCommandCreateWithoutParametersInput!]
  1289. delete: [InstrumentCommandWhereUniqueInput!]
  1290. connect: [InstrumentCommandWhereUniqueInput!]
  1291. set: [InstrumentCommandWhereUniqueInput!]
  1292. disconnect: [InstrumentCommandWhereUniqueInput!]
  1293. update: [InstrumentCommandUpdateWithWhereUniqueWithoutParametersInput!]
  1294. upsert: [InstrumentCommandUpsertWithWhereUniqueWithoutParametersInput!]
  1295. deleteMany: [InstrumentCommandScalarWhereInput!]
  1296. updateMany: [InstrumentCommandUpdateManyWithWhereNestedInput!]
  1297. }
  1298. input InstrumentCommandUpdateManyWithWhereNestedInput {
  1299. where: InstrumentCommandScalarWhereInput!
  1300. data: InstrumentCommandUpdateManyDataInput!
  1301. }
  1302. input InstrumentCommandUpdateWithoutParametersDataInput {
  1303. tag: String
  1304. name: String
  1305. description: String
  1306. readString: String
  1307. writeString: String
  1308. subsystem: String
  1309. }
  1310. input InstrumentCommandUpdateWithWhereUniqueNestedInput {
  1311. where: InstrumentCommandWhereUniqueInput!
  1312. data: InstrumentCommandUpdateDataInput!
  1313. }
  1314. input InstrumentCommandUpdateWithWhereUniqueWithoutParametersInput {
  1315. where: InstrumentCommandWhereUniqueInput!
  1316. data: InstrumentCommandUpdateWithoutParametersDataInput!
  1317. }
  1318. input InstrumentCommandUpsertWithWhereUniqueNestedInput {
  1319. where: InstrumentCommandWhereUniqueInput!
  1320. update: InstrumentCommandUpdateDataInput!
  1321. create: InstrumentCommandCreateInput!
  1322. }
  1323. input InstrumentCommandUpsertWithWhereUniqueWithoutParametersInput {
  1324. where: InstrumentCommandWhereUniqueInput!
  1325. update: InstrumentCommandUpdateWithoutParametersDataInput!
  1326. create: InstrumentCommandCreateWithoutParametersInput!
  1327. }
  1328. input InstrumentCommandWhereInput {
  1329. id: ID
  1330. id_not: ID
  1331. id_in: [ID!]
  1332. id_not_in: [ID!]
  1333. id_lt: ID
  1334. id_lte: ID
  1335. id_gt: ID
  1336. id_gte: ID
  1337. id_contains: ID
  1338. id_not_contains: ID
  1339. id_starts_with: ID
  1340. id_not_starts_with: ID
  1341. id_ends_with: ID
  1342. id_not_ends_with: ID
  1343. tag: String
  1344. tag_not: String
  1345. tag_in: [String!]
  1346. tag_not_in: [String!]
  1347. tag_lt: String
  1348. tag_lte: String
  1349. tag_gt: String
  1350. tag_gte: String
  1351. tag_contains: String
  1352. tag_not_contains: String
  1353. tag_starts_with: String
  1354. tag_not_starts_with: String
  1355. tag_ends_with: String
  1356. tag_not_ends_with: String
  1357. name: String
  1358. name_not: String
  1359. name_in: [String!]
  1360. name_not_in: [String!]
  1361. name_lt: String
  1362. name_lte: String
  1363. name_gt: String
  1364. name_gte: String
  1365. name_contains: String
  1366. name_not_contains: String
  1367. name_starts_with: String
  1368. name_not_starts_with: String
  1369. name_ends_with: String
  1370. name_not_ends_with: String
  1371. description: String
  1372. description_not: String
  1373. description_in: [String!]
  1374. description_not_in: [String!]
  1375. description_lt: String
  1376. description_lte: String
  1377. description_gt: String
  1378. description_gte: String
  1379. description_contains: String
  1380. description_not_contains: String
  1381. description_starts_with: String
  1382. description_not_starts_with: String
  1383. description_ends_with: String
  1384. description_not_ends_with: String
  1385. readString: String
  1386. readString_not: String
  1387. readString_in: [String!]
  1388. readString_not_in: [String!]
  1389. readString_lt: String
  1390. readString_lte: String
  1391. readString_gt: String
  1392. readString_gte: String
  1393. readString_contains: String
  1394. readString_not_contains: String
  1395. readString_starts_with: String
  1396. readString_not_starts_with: String
  1397. readString_ends_with: String
  1398. readString_not_ends_with: String
  1399. writeString: String
  1400. writeString_not: String
  1401. writeString_in: [String!]
  1402. writeString_not_in: [String!]
  1403. writeString_lt: String
  1404. writeString_lte: String
  1405. writeString_gt: String
  1406. writeString_gte: String
  1407. writeString_contains: String
  1408. writeString_not_contains: String
  1409. writeString_starts_with: String
  1410. writeString_not_starts_with: String
  1411. writeString_ends_with: String
  1412. writeString_not_ends_with: String
  1413. subsystem: String
  1414. subsystem_not: String
  1415. subsystem_in: [String!]
  1416. subsystem_not_in: [String!]
  1417. subsystem_lt: String
  1418. subsystem_lte: String
  1419. subsystem_gt: String
  1420. subsystem_gte: String
  1421. subsystem_contains: String
  1422. subsystem_not_contains: String
  1423. subsystem_starts_with: String
  1424. subsystem_not_starts_with: String
  1425. subsystem_ends_with: String
  1426. subsystem_not_ends_with: String
  1427. parameters_every: InstrumentParameterWhereInput
  1428. parameters_some: InstrumentParameterWhereInput
  1429. parameters_none: InstrumentParameterWhereInput
  1430. AND: [InstrumentCommandWhereInput!]
  1431. OR: [InstrumentCommandWhereInput!]
  1432. NOT: [InstrumentCommandWhereInput!]
  1433. }
  1434. input InstrumentCommandWhereUniqueInput {
  1435. id: ID
  1436. }
  1437. type InstrumentConnection {
  1438. pageInfo: PageInfo!
  1439. edges: [InstrumentEdge]!
  1440. aggregate: AggregateInstrument!
  1441. }
  1442. input InstrumentCreateInput {
  1443. name: String!
  1444. manufacturer: String!
  1445. description: String
  1446. picture: ID
  1447. documents: FileCreateManyInput
  1448. interfaces: InstrumentCreateinterfacesInput
  1449. commands: InstrumentCommandCreateManyInput
  1450. parameters: InstrumentParameterCreateManyWithoutInstrumentInput
  1451. instances: InstrumentInstanceCreateManyWithoutInstrumentInput
  1452. }
  1453. input InstrumentCreateinterfacesInput {
  1454. set: [String!]
  1455. }
  1456. input InstrumentCreateOneWithoutInstancesInput {
  1457. create: InstrumentCreateWithoutInstancesInput
  1458. connect: InstrumentWhereUniqueInput
  1459. }
  1460. input InstrumentCreateOneWithoutParametersInput {
  1461. create: InstrumentCreateWithoutParametersInput
  1462. connect: InstrumentWhereUniqueInput
  1463. }
  1464. input InstrumentCreateWithoutInstancesInput {
  1465. name: String!
  1466. manufacturer: String!
  1467. description: String
  1468. picture: ID
  1469. documents: FileCreateManyInput
  1470. interfaces: InstrumentCreateinterfacesInput
  1471. commands: InstrumentCommandCreateManyInput
  1472. parameters: InstrumentParameterCreateManyWithoutInstrumentInput
  1473. }
  1474. input InstrumentCreateWithoutParametersInput {
  1475. name: String!
  1476. manufacturer: String!
  1477. description: String
  1478. picture: ID
  1479. documents: FileCreateManyInput
  1480. interfaces: InstrumentCreateinterfacesInput
  1481. commands: InstrumentCommandCreateManyInput
  1482. instances: InstrumentInstanceCreateManyWithoutInstrumentInput
  1483. }
  1484. type InstrumentEdge {
  1485. node: Instrument!
  1486. cursor: String!
  1487. }
  1488. type InstrumentInstance {
  1489. id: ID!
  1490. instrument: Instrument!
  1491. identifier: String!
  1492. label: String
  1493. location: String
  1494. }
  1495. type InstrumentInstanceConnection {
  1496. pageInfo: PageInfo!
  1497. edges: [InstrumentInstanceEdge]!
  1498. aggregate: AggregateInstrumentInstance!
  1499. }
  1500. input InstrumentInstanceCreateInput {
  1501. instrument: InstrumentCreateOneWithoutInstancesInput!
  1502. identifier: String!
  1503. label: String
  1504. location: String
  1505. }
  1506. input InstrumentInstanceCreateManyInput {
  1507. create: [InstrumentInstanceCreateInput!]
  1508. connect: [InstrumentInstanceWhereUniqueInput!]
  1509. }
  1510. input InstrumentInstanceCreateManyWithoutInstrumentInput {
  1511. create: [InstrumentInstanceCreateWithoutInstrumentInput!]
  1512. connect: [InstrumentInstanceWhereUniqueInput!]
  1513. }
  1514. input InstrumentInstanceCreateWithoutInstrumentInput {
  1515. identifier: String!
  1516. label: String
  1517. location: String
  1518. }
  1519. type InstrumentInstanceEdge {
  1520. node: InstrumentInstance!
  1521. cursor: String!
  1522. }
  1523. enum InstrumentInstanceOrderByInput {
  1524. id_ASC
  1525. id_DESC
  1526. identifier_ASC
  1527. identifier_DESC
  1528. label_ASC
  1529. label_DESC
  1530. location_ASC
  1531. location_DESC
  1532. createdAt_ASC
  1533. createdAt_DESC
  1534. updatedAt_ASC
  1535. updatedAt_DESC
  1536. }
  1537. type InstrumentInstancePreviousValues {
  1538. id: ID!
  1539. identifier: String!
  1540. label: String
  1541. location: String
  1542. }
  1543. input InstrumentInstanceScalarWhereInput {
  1544. id: ID
  1545. id_not: ID
  1546. id_in: [ID!]
  1547. id_not_in: [ID!]
  1548. id_lt: ID
  1549. id_lte: ID
  1550. id_gt: ID
  1551. id_gte: ID
  1552. id_contains: ID
  1553. id_not_contains: ID
  1554. id_starts_with: ID
  1555. id_not_starts_with: ID
  1556. id_ends_with: ID
  1557. id_not_ends_with: ID
  1558. identifier: String
  1559. identifier_not: String
  1560. identifier_in: [String!]
  1561. identifier_not_in: [String!]
  1562. identifier_lt: String
  1563. identifier_lte: String
  1564. identifier_gt: String
  1565. identifier_gte: String
  1566. identifier_contains: String
  1567. identifier_not_contains: String
  1568. identifier_starts_with: String
  1569. identifier_not_starts_with: String
  1570. identifier_ends_with: String
  1571. identifier_not_ends_with: String
  1572. label: String
  1573. label_not: String
  1574. label_in: [String!]
  1575. label_not_in: [String!]
  1576. label_lt: String
  1577. label_lte: String
  1578. label_gt: String
  1579. label_gte: String
  1580. label_contains: String
  1581. label_not_contains: String
  1582. label_starts_with: String
  1583. label_not_starts_with: String
  1584. label_ends_with: String
  1585. label_not_ends_with: String
  1586. location: String
  1587. location_not: String
  1588. location_in: [String!]
  1589. location_not_in: [String!]
  1590. location_lt: String
  1591. location_lte: String
  1592. location_gt: String
  1593. location_gte: String
  1594. location_contains: String
  1595. location_not_contains: String
  1596. location_starts_with: String
  1597. location_not_starts_with: String
  1598. location_ends_with: String
  1599. location_not_ends_with: String
  1600. AND: [InstrumentInstanceScalarWhereInput!]
  1601. OR: [InstrumentInstanceScalarWhereInput!]
  1602. NOT: [InstrumentInstanceScalarWhereInput!]
  1603. }
  1604. type InstrumentInstanceSubscriptionPayload {
  1605. mutation: MutationType!
  1606. node: InstrumentInstance
  1607. updatedFields: [String!]
  1608. previousValues: InstrumentInstancePreviousValues
  1609. }
  1610. input InstrumentInstanceSubscriptionWhereInput {
  1611. mutation_in: [MutationType!]
  1612. updatedFields_contains: String
  1613. updatedFields_contains_every: [String!]
  1614. updatedFields_contains_some: [String!]
  1615. node: InstrumentInstanceWhereInput
  1616. AND: [InstrumentInstanceSubscriptionWhereInput!]
  1617. OR: [InstrumentInstanceSubscriptionWhereInput!]
  1618. NOT: [InstrumentInstanceSubscriptionWhereInput!]
  1619. }
  1620. input InstrumentInstanceUpdateDataInput {
  1621. instrument: InstrumentUpdateOneRequiredWithoutInstancesInput
  1622. identifier: String
  1623. label: String
  1624. location: String
  1625. }
  1626. input InstrumentInstanceUpdateInput {
  1627. instrument: InstrumentUpdateOneRequiredWithoutInstancesInput
  1628. identifier: String
  1629. label: String
  1630. location: String
  1631. }
  1632. input InstrumentInstanceUpdateManyDataInput {
  1633. identifier: String
  1634. label: String
  1635. location: String
  1636. }
  1637. input InstrumentInstanceUpdateManyInput {
  1638. create: [InstrumentInstanceCreateInput!]
  1639. update: [InstrumentInstanceUpdateWithWhereUniqueNestedInput!]
  1640. upsert: [InstrumentInstanceUpsertWithWhereUniqueNestedInput!]
  1641. delete: [InstrumentInstanceWhereUniqueInput!]
  1642. connect: [InstrumentInstanceWhereUniqueInput!]
  1643. set: [InstrumentInstanceWhereUniqueInput!]
  1644. disconnect: [InstrumentInstanceWhereUniqueInput!]
  1645. deleteMany: [InstrumentInstanceScalarWhereInput!]
  1646. updateMany: [InstrumentInstanceUpdateManyWithWhereNestedInput!]
  1647. }
  1648. input InstrumentInstanceUpdateManyMutationInput {
  1649. identifier: String
  1650. label: String
  1651. location: String
  1652. }
  1653. input InstrumentInstanceUpdateManyWithoutInstrumentInput {
  1654. create: [InstrumentInstanceCreateWithoutInstrumentInput!]
  1655. delete: [InstrumentInstanceWhereUniqueInput!]
  1656. connect: [InstrumentInstanceWhereUniqueInput!]
  1657. set: [InstrumentInstanceWhereUniqueInput!]
  1658. disconnect: [InstrumentInstanceWhereUniqueInput!]
  1659. update: [InstrumentInstanceUpdateWithWhereUniqueWithoutInstrumentInput!]
  1660. upsert: [InstrumentInstanceUpsertWithWhereUniqueWithoutInstrumentInput!]
  1661. deleteMany: [InstrumentInstanceScalarWhereInput!]
  1662. updateMany: [InstrumentInstanceUpdateManyWithWhereNestedInput!]
  1663. }
  1664. input InstrumentInstanceUpdateManyWithWhereNestedInput {
  1665. where: InstrumentInstanceScalarWhereInput!
  1666. data: InstrumentInstanceUpdateManyDataInput!
  1667. }
  1668. input InstrumentInstanceUpdateWithoutInstrumentDataInput {
  1669. identifier: String
  1670. label: String
  1671. location: String
  1672. }
  1673. input InstrumentInstanceUpdateWithWhereUniqueNestedInput {
  1674. where: InstrumentInstanceWhereUniqueInput!
  1675. data: InstrumentInstanceUpdateDataInput!
  1676. }
  1677. input InstrumentInstanceUpdateWithWhereUniqueWithoutInstrumentInput {
  1678. where: InstrumentInstanceWhereUniqueInput!
  1679. data: InstrumentInstanceUpdateWithoutInstrumentDataInput!
  1680. }
  1681. input InstrumentInstanceUpsertWithWhereUniqueNestedInput {
  1682. where: InstrumentInstanceWhereUniqueInput!
  1683. update: InstrumentInstanceUpdateDataInput!
  1684. create: InstrumentInstanceCreateInput!
  1685. }
  1686. input InstrumentInstanceUpsertWithWhereUniqueWithoutInstrumentInput {
  1687. where: InstrumentInstanceWhereUniqueInput!
  1688. update: InstrumentInstanceUpdateWithoutInstrumentDataInput!
  1689. create: InstrumentInstanceCreateWithoutInstrumentInput!
  1690. }
  1691. input InstrumentInstanceWhereInput {
  1692. id: ID
  1693. id_not: ID
  1694. id_in: [ID!]
  1695. id_not_in: [ID!]
  1696. id_lt: ID
  1697. id_lte: ID
  1698. id_gt: ID
  1699. id_gte: ID
  1700. id_contains: ID
  1701. id_not_contains: ID
  1702. id_starts_with: ID
  1703. id_not_starts_with: ID
  1704. id_ends_with: ID
  1705. id_not_ends_with: ID
  1706. instrument: InstrumentWhereInput
  1707. identifier: String
  1708. identifier_not: String
  1709. identifier_in: [String!]
  1710. identifier_not_in: [String!]
  1711. identifier_lt: String
  1712. identifier_lte: String
  1713. identifier_gt: String
  1714. identifier_gte: String
  1715. identifier_contains: String
  1716. identifier_not_contains: String
  1717. identifier_starts_with: String
  1718. identifier_not_starts_with: String
  1719. identifier_ends_with: String
  1720. identifier_not_ends_with: String
  1721. label: String
  1722. label_not: String
  1723. label_in: [String!]
  1724. label_not_in: [String!]
  1725. label_lt: String
  1726. label_lte: String
  1727. label_gt: String
  1728. label_gte: String
  1729. label_contains: String
  1730. label_not_contains: String
  1731. label_starts_with: String
  1732. label_not_starts_with: String
  1733. label_ends_with: String
  1734. label_not_ends_with: String
  1735. location: String
  1736. location_not: String
  1737. location_in: [String!]
  1738. location_not_in: [String!]
  1739. location_lt: String
  1740. location_lte: String
  1741. location_gt: String
  1742. location_gte: String
  1743. location_contains: String
  1744. location_not_contains: String
  1745. location_starts_with: String
  1746. location_not_starts_with: String
  1747. location_ends_with: String
  1748. location_not_ends_with: String
  1749. AND: [InstrumentInstanceWhereInput!]
  1750. OR: [InstrumentInstanceWhereInput!]
  1751. NOT: [InstrumentInstanceWhereInput!]
  1752. }
  1753. input InstrumentInstanceWhereUniqueInput {
  1754. id: ID
  1755. }
  1756. enum InstrumentOrderByInput {
  1757. id_ASC
  1758. id_DESC
  1759. name_ASC
  1760. name_DESC
  1761. manufacturer_ASC
  1762. manufacturer_DESC
  1763. description_ASC
  1764. description_DESC
  1765. picture_ASC
  1766. picture_DESC
  1767. createdAt_ASC
  1768. createdAt_DESC
  1769. updatedAt_ASC
  1770. updatedAt_DESC
  1771. }
  1772. type InstrumentParameter {
  1773. id: ID!
  1774. tag: String!
  1775. name: String
  1776. description: String
  1777. type: String!
  1778. values: String
  1779. instrument: Instrument!
  1780. commands(where: InstrumentCommandWhereInput, orderBy: InstrumentCommandOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [InstrumentCommand!]
  1781. }
  1782. type InstrumentParameterConnection {
  1783. pageInfo: PageInfo!
  1784. edges: [InstrumentParameterEdge]!
  1785. aggregate: AggregateInstrumentParameter!
  1786. }
  1787. input InstrumentParameterCreateInput {
  1788. tag: String!
  1789. name: String
  1790. description: String
  1791. type: String!
  1792. values: String
  1793. instrument: InstrumentCreateOneWithoutParametersInput!
  1794. commands: InstrumentCommandCreateManyWithoutParametersInput
  1795. }
  1796. input InstrumentParameterCreateManyWithoutCommandsInput {
  1797. create: [InstrumentParameterCreateWithoutCommandsInput!]
  1798. connect: [InstrumentParameterWhereUniqueInput!]
  1799. }
  1800. input InstrumentParameterCreateManyWithoutInstrumentInput {
  1801. create: [InstrumentParameterCreateWithoutInstrumentInput!]
  1802. connect: [InstrumentParameterWhereUniqueInput!]
  1803. }
  1804. input InstrumentParameterCreateWithoutCommandsInput {
  1805. tag: String!
  1806. name: String
  1807. description: String
  1808. type: String!
  1809. values: String
  1810. instrument: InstrumentCreateOneWithoutParametersInput!
  1811. }
  1812. input InstrumentParameterCreateWithoutInstrumentInput {
  1813. tag: String!
  1814. name: String
  1815. description: String
  1816. type: String!
  1817. values: String
  1818. commands: InstrumentCommandCreateManyWithoutParametersInput
  1819. }
  1820. type InstrumentParameterEdge {
  1821. node: InstrumentParameter!
  1822. cursor: String!
  1823. }
  1824. enum InstrumentParameterOrderByInput {
  1825. id_ASC
  1826. id_DESC
  1827. tag_ASC
  1828. tag_DESC
  1829. name_ASC
  1830. name_DESC
  1831. description_ASC
  1832. description_DESC
  1833. type_ASC
  1834. type_DESC
  1835. values_ASC
  1836. values_DESC
  1837. createdAt_ASC
  1838. createdAt_DESC
  1839. updatedAt_ASC
  1840. updatedAt_DESC
  1841. }
  1842. type InstrumentParameterPreviousValues {
  1843. id: ID!
  1844. tag: String!
  1845. name: String
  1846. description: String
  1847. type: String!
  1848. values: String
  1849. }
  1850. input InstrumentParameterScalarWhereInput {
  1851. id: ID
  1852. id_not: ID
  1853. id_in: [ID!]
  1854. id_not_in: [ID!]
  1855. id_lt: ID
  1856. id_lte: ID
  1857. id_gt: ID
  1858. id_gte: ID
  1859. id_contains: ID
  1860. id_not_contains: ID
  1861. id_starts_with: ID
  1862. id_not_starts_with: ID
  1863. id_ends_with: ID
  1864. id_not_ends_with: ID
  1865. tag: String
  1866. tag_not: String
  1867. tag_in: [String!]
  1868. tag_not_in: [String!]
  1869. tag_lt: String
  1870. tag_lte: String
  1871. tag_gt: String
  1872. tag_gte: String
  1873. tag_contains: String
  1874. tag_not_contains: String
  1875. tag_starts_with: String
  1876. tag_not_starts_with: String
  1877. tag_ends_with: String
  1878. tag_not_ends_with: String
  1879. name: String
  1880. name_not: String
  1881. name_in: [String!]
  1882. name_not_in: [String!]
  1883. name_lt: String
  1884. name_lte: String
  1885. name_gt: String
  1886. name_gte: String
  1887. name_contains: String
  1888. name_not_contains: String
  1889. name_starts_with: String
  1890. name_not_starts_with: String
  1891. name_ends_with: String
  1892. name_not_ends_with: String
  1893. description: String
  1894. description_not: String
  1895. description_in: [String!]
  1896. description_not_in: [String!]
  1897. description_lt: String
  1898. description_lte: String
  1899. description_gt: String
  1900. description_gte: String
  1901. description_contains: String
  1902. description_not_contains: String
  1903. description_starts_with: String
  1904. description_not_starts_with: String
  1905. description_ends_with: String
  1906. description_not_ends_with: String
  1907. type: String
  1908. type_not: String
  1909. type_in: [String!]
  1910. type_not_in: [String!]
  1911. type_lt: String
  1912. type_lte: String
  1913. type_gt: String
  1914. type_gte: String
  1915. type_contains: String
  1916. type_not_contains: String
  1917. type_starts_with: String
  1918. type_not_starts_with: String
  1919. type_ends_with: String
  1920. type_not_ends_with: String
  1921. values: String
  1922. values_not: String
  1923. values_in: [String!]
  1924. values_not_in: [String!]
  1925. values_lt: String
  1926. values_lte: String
  1927. values_gt: String
  1928. values_gte: String
  1929. values_contains: String
  1930. values_not_contains: String
  1931. values_starts_with: String
  1932. values_not_starts_with: String
  1933. values_ends_with: String
  1934. values_not_ends_with: String
  1935. AND: [InstrumentParameterScalarWhereInput!]
  1936. OR: [InstrumentParameterScalarWhereInput!]
  1937. NOT: [InstrumentParameterScalarWhereInput!]
  1938. }
  1939. type InstrumentParameterSubscriptionPayload {
  1940. mutation: MutationType!
  1941. node: InstrumentParameter
  1942. updatedFields: [String!]
  1943. previousValues: InstrumentParameterPreviousValues
  1944. }
  1945. input InstrumentParameterSubscriptionWhereInput {
  1946. mutation_in: [MutationType!]
  1947. updatedFields_contains: String
  1948. updatedFields_contains_every: [String!]
  1949. updatedFields_contains_some: [String!]
  1950. node: InstrumentParameterWhereInput
  1951. AND: [InstrumentParameterSubscriptionWhereInput!]
  1952. OR: [InstrumentParameterSubscriptionWhereInput!]
  1953. NOT: [InstrumentParameterSubscriptionWhereInput!]
  1954. }
  1955. input InstrumentParameterUpdateInput {
  1956. tag: String
  1957. name: String
  1958. description: String
  1959. type: String
  1960. values: String
  1961. instrument: InstrumentUpdateOneRequiredWithoutParametersInput
  1962. commands: InstrumentCommandUpdateManyWithoutParametersInput
  1963. }
  1964. input InstrumentParameterUpdateManyDataInput {
  1965. tag: String
  1966. name: String
  1967. description: String
  1968. type: String
  1969. values: String
  1970. }
  1971. input InstrumentParameterUpdateManyMutationInput {
  1972. tag: String
  1973. name: String
  1974. description: String
  1975. type: String
  1976. values: String
  1977. }
  1978. input InstrumentParameterUpdateManyWithoutCommandsInput {
  1979. create: [InstrumentParameterCreateWithoutCommandsInput!]
  1980. delete: [InstrumentParameterWhereUniqueInput!]
  1981. connect: [InstrumentParameterWhereUniqueInput!]
  1982. set: [InstrumentParameterWhereUniqueInput!]
  1983. disconnect: [InstrumentParameterWhereUniqueInput!]
  1984. update: [InstrumentParameterUpdateWithWhereUniqueWithoutCommandsInput!]
  1985. upsert: [InstrumentParameterUpsertWithWhereUniqueWithoutCommandsInput!]
  1986. deleteMany: [InstrumentParameterScalarWhereInput!]
  1987. updateMany: [InstrumentParameterUpdateManyWithWhereNestedInput!]
  1988. }
  1989. input InstrumentParameterUpdateManyWithoutInstrumentInput {
  1990. create: [InstrumentParameterCreateWithoutInstrumentInput!]
  1991. delete: [InstrumentParameterWhereUniqueInput!]
  1992. connect: [InstrumentParameterWhereUniqueInput!]
  1993. set: [InstrumentParameterWhereUniqueInput!]
  1994. disconnect: [InstrumentParameterWhereUniqueInput!]
  1995. update: [InstrumentParameterUpdateWithWhereUniqueWithoutInstrumentInput!]
  1996. upsert: [InstrumentParameterUpsertWithWhereUniqueWithoutInstrumentInput!]
  1997. deleteMany: [InstrumentParameterScalarWhereInput!]
  1998. updateMany: [InstrumentParameterUpdateManyWithWhereNestedInput!]
  1999. }
  2000. input InstrumentParameterUpdateManyWithWhereNestedInput {
  2001. where: InstrumentParameterScalarWhereInput!
  2002. data: InstrumentParameterUpdateManyDataInput!
  2003. }
  2004. input InstrumentParameterUpdateWithoutCommandsDataInput {
  2005. tag: String
  2006. name: String
  2007. description: String
  2008. type: String
  2009. values: String
  2010. instrument: InstrumentUpdateOneRequiredWithoutParametersInput
  2011. }
  2012. input InstrumentParameterUpdateWithoutInstrumentDataInput {
  2013. tag: String
  2014. name: String
  2015. description: String
  2016. type: String
  2017. values: String
  2018. commands: InstrumentCommandUpdateManyWithoutParametersInput
  2019. }
  2020. input InstrumentParameterUpdateWithWhereUniqueWithoutCommandsInput {
  2021. where: InstrumentParameterWhereUniqueInput!
  2022. data: InstrumentParameterUpdateWithoutCommandsDataInput!
  2023. }
  2024. input InstrumentParameterUpdateWithWhereUniqueWithoutInstrumentInput {
  2025. where: InstrumentParameterWhereUniqueInput!
  2026. data: InstrumentParameterUpdateWithoutInstrumentDataInput!
  2027. }
  2028. input InstrumentParameterUpsertWithWhereUniqueWithoutCommandsInput {
  2029. where: InstrumentParameterWhereUniqueInput!
  2030. update: InstrumentParameterUpdateWithoutCommandsDataInput!
  2031. create: InstrumentParameterCreateWithoutCommandsInput!
  2032. }
  2033. input InstrumentParameterUpsertWithWhereUniqueWithoutInstrumentInput {
  2034. where: InstrumentParameterWhereUniqueInput!
  2035. update: InstrumentParameterUpdateWithoutInstrumentDataInput!
  2036. create: InstrumentParameterCreateWithoutInstrumentInput!
  2037. }
  2038. input InstrumentParameterWhereInput {
  2039. id: ID
  2040. id_not: ID
  2041. id_in: [ID!]
  2042. id_not_in: [ID!]
  2043. id_lt: ID
  2044. id_lte: ID
  2045. id_gt: ID
  2046. id_gte: ID
  2047. id_contains: ID
  2048. id_not_contains: ID
  2049. id_starts_with: ID
  2050. id_not_starts_with: ID
  2051. id_ends_with: ID
  2052. id_not_ends_with: ID
  2053. tag: String
  2054. tag_not: String
  2055. tag_in: [String!]
  2056. tag_not_in: [String!]
  2057. tag_lt: String
  2058. tag_lte: String
  2059. tag_gt: String
  2060. tag_gte: String
  2061. tag_contains: String
  2062. tag_not_contains: String
  2063. tag_starts_with: String
  2064. tag_not_starts_with: String
  2065. tag_ends_with: String
  2066. tag_not_ends_with: String
  2067. name: String
  2068. name_not: String
  2069. name_in: [String!]
  2070. name_not_in: [String!]
  2071. name_lt: String
  2072. name_lte: String
  2073. name_gt: String
  2074. name_gte: String
  2075. name_contains: String
  2076. name_not_contains: String
  2077. name_starts_with: String
  2078. name_not_starts_with: String
  2079. name_ends_with: String
  2080. name_not_ends_with: String
  2081. description: String
  2082. description_not: String
  2083. description_in: [String!]
  2084. description_not_in: [String!]
  2085. description_lt: String
  2086. description_lte: String
  2087. description_gt: String
  2088. description_gte: String
  2089. description_contains: String
  2090. description_not_contains: String
  2091. description_starts_with: String
  2092. description_not_starts_with: String
  2093. description_ends_with: String
  2094. description_not_ends_with: String
  2095. type: String
  2096. type_not: String
  2097. type_in: [String!]
  2098. type_not_in: [String!]
  2099. type_lt: String
  2100. type_lte: String
  2101. type_gt: String
  2102. type_gte: String
  2103. type_contains: String
  2104. type_not_contains: String
  2105. type_starts_with: String
  2106. type_not_starts_with: String
  2107. type_ends_with: String
  2108. type_not_ends_with: String
  2109. values: String
  2110. values_not: String
  2111. values_in: [String!]
  2112. values_not_in: [String!]
  2113. values_lt: String
  2114. values_lte: String
  2115. values_gt: String
  2116. values_gte: String
  2117. values_contains: String
  2118. values_not_contains: String
  2119. values_starts_with: String
  2120. values_not_starts_with: String
  2121. values_ends_with: String
  2122. values_not_ends_with: String
  2123. instrument: InstrumentWhereInput
  2124. commands_every: InstrumentCommandWhereInput
  2125. commands_some: InstrumentCommandWhereInput
  2126. commands_none: InstrumentCommandWhereInput
  2127. AND: [InstrumentParameterWhereInput!]
  2128. OR: [InstrumentParameterWhereInput!]
  2129. NOT: [InstrumentParameterWhereInput!]
  2130. }
  2131. input InstrumentParameterWhereUniqueInput {
  2132. id: ID
  2133. }
  2134. type InstrumentPreviousValues {
  2135. id: ID!
  2136. name: String!
  2137. manufacturer: String!
  2138. description: String
  2139. picture: ID
  2140. interfaces: [String!]!
  2141. }
  2142. type InstrumentSubscriptionPayload {
  2143. mutation: MutationType!
  2144. node: Instrument
  2145. updatedFields: [String!]
  2146. previousValues: InstrumentPreviousValues
  2147. }
  2148. input InstrumentSubscriptionWhereInput {
  2149. mutation_in: [MutationType!]
  2150. updatedFields_contains: String
  2151. updatedFields_contains_every: [String!]
  2152. updatedFields_contains_some: [String!]
  2153. node: InstrumentWhereInput
  2154. AND: [InstrumentSubscriptionWhereInput!]
  2155. OR: [InstrumentSubscriptionWhereInput!]
  2156. NOT: [InstrumentSubscriptionWhereInput!]
  2157. }
  2158. input InstrumentUpdateInput {
  2159. name: String
  2160. manufacturer: String
  2161. description: String
  2162. picture: ID
  2163. documents: FileUpdateManyInput
  2164. interfaces: InstrumentUpdateinterfacesInput
  2165. commands: InstrumentCommandUpdateManyInput
  2166. parameters: InstrumentParameterUpdateManyWithoutInstrumentInput
  2167. instances: InstrumentInstanceUpdateManyWithoutInstrumentInput
  2168. }
  2169. input InstrumentUpdateinterfacesInput {
  2170. set: [String!]
  2171. }
  2172. input InstrumentUpdateManyMutationInput {
  2173. name: String
  2174. manufacturer: String
  2175. description: String
  2176. picture: ID
  2177. interfaces: InstrumentUpdateinterfacesInput
  2178. }
  2179. input InstrumentUpdateOneRequiredWithoutInstancesInput {
  2180. create: InstrumentCreateWithoutInstancesInput
  2181. update: InstrumentUpdateWithoutInstancesDataInput
  2182. upsert: InstrumentUpsertWithoutInstancesInput
  2183. connect: InstrumentWhereUniqueInput
  2184. }
  2185. input InstrumentUpdateOneRequiredWithoutParametersInput {
  2186. create: InstrumentCreateWithoutParametersInput
  2187. update: InstrumentUpdateWithoutParametersDataInput
  2188. upsert: InstrumentUpsertWithoutParametersInput
  2189. connect: InstrumentWhereUniqueInput
  2190. }
  2191. input InstrumentUpdateWithoutInstancesDataInput {
  2192. name: String
  2193. manufacturer: String
  2194. description: String
  2195. picture: ID
  2196. documents: FileUpdateManyInput
  2197. interfaces: InstrumentUpdateinterfacesInput
  2198. commands: InstrumentCommandUpdateManyInput
  2199. parameters: InstrumentParameterUpdateManyWithoutInstrumentInput
  2200. }
  2201. input InstrumentUpdateWithoutParametersDataInput {
  2202. name: String
  2203. manufacturer: String
  2204. description: String
  2205. picture: ID
  2206. documents: FileUpdateManyInput
  2207. interfaces: InstrumentUpdateinterfacesInput
  2208. commands: InstrumentCommandUpdateManyInput
  2209. instances: InstrumentInstanceUpdateManyWithoutInstrumentInput
  2210. }
  2211. input InstrumentUpsertWithoutInstancesInput {
  2212. update: InstrumentUpdateWithoutInstancesDataInput!
  2213. create: InstrumentCreateWithoutInstancesInput!
  2214. }
  2215. input InstrumentUpsertWithoutParametersInput {
  2216. update: InstrumentUpdateWithoutParametersDataInput!
  2217. create: InstrumentCreateWithoutParametersInput!
  2218. }
  2219. input InstrumentWhereInput {
  2220. id: ID
  2221. id_not: ID
  2222. id_in: [ID!]
  2223. id_not_in: [ID!]
  2224. id_lt: ID
  2225. id_lte: ID
  2226. id_gt: ID
  2227. id_gte: ID
  2228. id_contains: ID
  2229. id_not_contains: ID
  2230. id_starts_with: ID
  2231. id_not_starts_with: ID
  2232. id_ends_with: ID
  2233. id_not_ends_with: ID
  2234. name: String
  2235. name_not: String
  2236. name_in: [String!]
  2237. name_not_in: [String!]
  2238. name_lt: String
  2239. name_lte: String
  2240. name_gt: String
  2241. name_gte: String
  2242. name_contains: String
  2243. name_not_contains: String
  2244. name_starts_with: String
  2245. name_not_starts_with: String
  2246. name_ends_with: String
  2247. name_not_ends_with: String
  2248. manufacturer: String
  2249. manufacturer_not: String
  2250. manufacturer_in: [String!]
  2251. manufacturer_not_in: [String!]
  2252. manufacturer_lt: String
  2253. manufacturer_lte: String
  2254. manufacturer_gt: String
  2255. manufacturer_gte: String
  2256. manufacturer_contains: String
  2257. manufacturer_not_contains: String
  2258. manufacturer_starts_with: String
  2259. manufacturer_not_starts_with: String
  2260. manufacturer_ends_with: String
  2261. manufacturer_not_ends_with: String
  2262. description: String
  2263. description_not: String
  2264. description_in: [String!]
  2265. description_not_in: [String!]
  2266. description_lt: String
  2267. description_lte: String
  2268. description_gt: String
  2269. description_gte: String
  2270. description_contains: String
  2271. description_not_contains: String
  2272. description_starts_with: String
  2273. description_not_starts_with: String
  2274. description_ends_with: String
  2275. description_not_ends_with: String
  2276. picture: ID
  2277. picture_not: ID
  2278. picture_in: [ID!]
  2279. picture_not_in: [ID!]
  2280. picture_lt: ID
  2281. picture_lte: ID
  2282. picture_gt: ID
  2283. picture_gte: ID
  2284. picture_contains: ID
  2285. picture_not_contains: ID
  2286. picture_starts_with: ID
  2287. picture_not_starts_with: ID
  2288. picture_ends_with: ID
  2289. picture_not_ends_with: ID
  2290. documents_every: FileWhereInput
  2291. documents_some: FileWhereInput
  2292. documents_none: FileWhereInput
  2293. commands_every: InstrumentCommandWhereInput
  2294. commands_some: InstrumentCommandWhereInput
  2295. commands_none: InstrumentCommandWhereInput
  2296. parameters_every: InstrumentParameterWhereInput
  2297. parameters_some: InstrumentParameterWhereInput
  2298. parameters_none: InstrumentParameterWhereInput
  2299. instances_every: InstrumentInstanceWhereInput
  2300. instances_some: InstrumentInstanceWhereInput
  2301. instances_none: InstrumentInstanceWhereInput
  2302. AND: [InstrumentWhereInput!]
  2303. OR: [InstrumentWhereInput!]
  2304. NOT: [InstrumentWhereInput!]
  2305. }
  2306. input InstrumentWhereUniqueInput {
  2307. id: ID
  2308. }
  2309. scalar Long
  2310. type Measurement {
  2311. id: ID!
  2312. createdAt: DateTime!
  2313. intValue: Int
  2314. floatValue: Float
  2315. stringValue: String
  2316. }
  2317. type MeasurementConnection {
  2318. pageInfo: PageInfo!
  2319. edges: [MeasurementEdge]!
  2320. aggregate: AggregateMeasurement!
  2321. }
  2322. input MeasurementCreateInput {
  2323. intValue: Int
  2324. floatValue: Float
  2325. stringValue: String
  2326. }
  2327. input MeasurementCreateManyInput {
  2328. create: [MeasurementCreateInput!]
  2329. connect: [MeasurementWhereUniqueInput!]
  2330. }
  2331. type MeasurementEdge {
  2332. node: Measurement!
  2333. cursor: String!
  2334. }
  2335. enum MeasurementOrderByInput {
  2336. id_ASC
  2337. id_DESC
  2338. createdAt_ASC
  2339. createdAt_DESC
  2340. intValue_ASC
  2341. intValue_DESC
  2342. floatValue_ASC
  2343. floatValue_DESC
  2344. stringValue_ASC
  2345. stringValue_DESC
  2346. updatedAt_ASC
  2347. updatedAt_DESC
  2348. }
  2349. type MeasurementPreviousValues {
  2350. id: ID!
  2351. createdAt: DateTime!
  2352. intValue: Int
  2353. floatValue: Float
  2354. stringValue: String
  2355. }
  2356. type MeasurementRun {
  2357. id: ID!
  2358. name: String!
  2359. operators(where: UserWhereInput, orderBy: UserOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [User!]
  2360. location: String!
  2361. temperature: Float
  2362. startTime: DateTime!
  2363. endTime: DateTime!
  2364. log(where: EventWhereInput, orderBy: EventOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Event!]
  2365. comments(where: CommentWhereInput, orderBy: CommentOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Comment!]
  2366. measurements(where: MeasurementWhereInput, orderBy: MeasurementOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Measurement!]
  2367. setup: Setup!
  2368. }
  2369. type MeasurementRunConnection {
  2370. pageInfo: PageInfo!
  2371. edges: [MeasurementRunEdge]!
  2372. aggregate: AggregateMeasurementRun!
  2373. }
  2374. input MeasurementRunCreateInput {
  2375. name: String!
  2376. operators: UserCreateManyInput
  2377. location: String!
  2378. temperature: Float
  2379. startTime: DateTime!
  2380. endTime: DateTime!
  2381. log: EventCreateManyInput
  2382. comments: CommentCreateManyInput
  2383. measurements: MeasurementCreateManyInput
  2384. setup: SetupCreateOneInput!
  2385. }
  2386. input MeasurementRunCreateManyInput {
  2387. create: [MeasurementRunCreateInput!]
  2388. connect: [MeasurementRunWhereUniqueInput!]
  2389. }
  2390. type MeasurementRunEdge {
  2391. node: MeasurementRun!
  2392. cursor: String!
  2393. }
  2394. enum MeasurementRunOrderByInput {
  2395. id_ASC
  2396. id_DESC
  2397. name_ASC
  2398. name_DESC
  2399. location_ASC
  2400. location_DESC
  2401. temperature_ASC
  2402. temperature_DESC
  2403. startTime_ASC
  2404. startTime_DESC
  2405. endTime_ASC
  2406. endTime_DESC
  2407. createdAt_ASC
  2408. createdAt_DESC
  2409. updatedAt_ASC
  2410. updatedAt_DESC
  2411. }
  2412. type MeasurementRunPreviousValues {
  2413. id: ID!
  2414. name: String!
  2415. location: String!
  2416. temperature: Float
  2417. startTime: DateTime!
  2418. endTime: DateTime!
  2419. }
  2420. input MeasurementRunScalarWhereInput {
  2421. id: ID
  2422. id_not: ID
  2423. id_in: [ID!]
  2424. id_not_in: [ID!]
  2425. id_lt: ID
  2426. id_lte: ID
  2427. id_gt: ID
  2428. id_gte: ID
  2429. id_contains: ID
  2430. id_not_contains: ID
  2431. id_starts_with: ID
  2432. id_not_starts_with: ID
  2433. id_ends_with: ID
  2434. id_not_ends_with: ID
  2435. name: String
  2436. name_not: String
  2437. name_in: [String!]
  2438. name_not_in: [String!]
  2439. name_lt: String
  2440. name_lte: String
  2441. name_gt: String
  2442. name_gte: String
  2443. name_contains: String
  2444. name_not_contains: String
  2445. name_starts_with: String
  2446. name_not_starts_with: String
  2447. name_ends_with: String
  2448. name_not_ends_with: String
  2449. location: String
  2450. location_not: String
  2451. location_in: [String!]
  2452. location_not_in: [String!]
  2453. location_lt: String
  2454. location_lte: String
  2455. location_gt: String
  2456. location_gte: String
  2457. location_contains: String
  2458. location_not_contains: String
  2459. location_starts_with: String
  2460. location_not_starts_with: String
  2461. location_ends_with: String
  2462. location_not_ends_with: String
  2463. temperature: Float
  2464. temperature_not: Float
  2465. temperature_in: [Float!]
  2466. temperature_not_in: [Float!]
  2467. temperature_lt: Float
  2468. temperature_lte: Float
  2469. temperature_gt: Float
  2470. temperature_gte: Float
  2471. startTime: DateTime
  2472. startTime_not: DateTime
  2473. startTime_in: [DateTime!]
  2474. startTime_not_in: [DateTime!]
  2475. startTime_lt: DateTime
  2476. startTime_lte: DateTime
  2477. startTime_gt: DateTime
  2478. startTime_gte: DateTime
  2479. endTime: DateTime
  2480. endTime_not: DateTime
  2481. endTime_in: [DateTime!]
  2482. endTime_not_in: [DateTime!]
  2483. endTime_lt: DateTime
  2484. endTime_lte: DateTime
  2485. endTime_gt: DateTime
  2486. endTime_gte: DateTime
  2487. AND: [MeasurementRunScalarWhereInput!]
  2488. OR: [MeasurementRunScalarWhereInput!]
  2489. NOT: [MeasurementRunScalarWhereInput!]
  2490. }
  2491. type MeasurementRunSubscriptionPayload {
  2492. mutation: MutationType!
  2493. node: MeasurementRun
  2494. updatedFields: [String!]
  2495. previousValues: MeasurementRunPreviousValues
  2496. }
  2497. input MeasurementRunSubscriptionWhereInput {
  2498. mutation_in: [MutationType!]
  2499. updatedFields_contains: String
  2500. updatedFields_contains_every: [String!]
  2501. updatedFields_contains_some: [String!]
  2502. node: MeasurementRunWhereInput
  2503. AND: [MeasurementRunSubscriptionWhereInput!]
  2504. OR: [MeasurementRunSubscriptionWhereInput!]
  2505. NOT: [MeasurementRunSubscriptionWhereInput!]
  2506. }
  2507. input MeasurementRunUpdateDataInput {
  2508. name: String
  2509. operators: UserUpdateManyInput
  2510. location: String
  2511. temperature: Float
  2512. startTime: DateTime
  2513. endTime: DateTime
  2514. log: EventUpdateManyInput
  2515. comments: CommentUpdateManyInput
  2516. measurements: MeasurementUpdateManyInput
  2517. setup: SetupUpdateOneRequiredInput
  2518. }
  2519. input MeasurementRunUpdateInput {
  2520. name: String
  2521. operators: UserUpdateManyInput
  2522. location: String
  2523. temperature: Float
  2524. startTime: DateTime
  2525. endTime: DateTime
  2526. log: EventUpdateManyInput
  2527. comments: CommentUpdateManyInput
  2528. measurements: MeasurementUpdateManyInput
  2529. setup: SetupUpdateOneRequiredInput
  2530. }
  2531. input MeasurementRunUpdateManyDataInput {
  2532. name: String
  2533. location: String
  2534. temperature: Float
  2535. startTime: DateTime
  2536. endTime: DateTime
  2537. }
  2538. input MeasurementRunUpdateManyInput {
  2539. create: [MeasurementRunCreateInput!]
  2540. update: [MeasurementRunUpdateWithWhereUniqueNestedInput!]
  2541. upsert: [MeasurementRunUpsertWithWhereUniqueNestedInput!]
  2542. delete: [MeasurementRunWhereUniqueInput!]
  2543. connect: [MeasurementRunWhereUniqueInput!]
  2544. set: [MeasurementRunWhereUniqueInput!]
  2545. disconnect: [MeasurementRunWhereUniqueInput!]
  2546. deleteMany: [MeasurementRunScalarWhereInput!]
  2547. updateMany: [MeasurementRunUpdateManyWithWhereNestedInput!]
  2548. }
  2549. input MeasurementRunUpdateManyMutationInput {
  2550. name: String
  2551. location: String
  2552. temperature: Float
  2553. startTime: DateTime
  2554. endTime: DateTime
  2555. }
  2556. input MeasurementRunUpdateManyWithWhereNestedInput {
  2557. where: MeasurementRunScalarWhereInput!
  2558. data: MeasurementRunUpdateManyDataInput!
  2559. }
  2560. input MeasurementRunUpdateWithWhereUniqueNestedInput {
  2561. where: MeasurementRunWhereUniqueInput!
  2562. data: MeasurementRunUpdateDataInput!
  2563. }
  2564. input MeasurementRunUpsertWithWhereUniqueNestedInput {
  2565. where: MeasurementRunWhereUniqueInput!
  2566. update: MeasurementRunUpdateDataInput!
  2567. create: MeasurementRunCreateInput!
  2568. }
  2569. input MeasurementRunWhereInput {
  2570. id: ID
  2571. id_not: ID
  2572. id_in: [ID!]
  2573. id_not_in: [ID!]
  2574. id_lt: ID
  2575. id_lte: ID
  2576. id_gt: ID
  2577. id_gte: ID
  2578. id_contains: ID
  2579. id_not_contains: ID
  2580. id_starts_with: ID
  2581. id_not_starts_with: ID
  2582. id_ends_with: ID
  2583. id_not_ends_with: ID
  2584. name: String
  2585. name_not: String
  2586. name_in: [String!]
  2587. name_not_in: [String!]
  2588. name_lt: String
  2589. name_lte: String
  2590. name_gt: String
  2591. name_gte: String
  2592. name_contains: String
  2593. name_not_contains: String
  2594. name_starts_with: String
  2595. name_not_starts_with: String
  2596. name_ends_with: String
  2597. name_not_ends_with: String
  2598. operators_every: UserWhereInput
  2599. operators_some: UserWhereInput
  2600. operators_none: UserWhereInput
  2601. location: String
  2602. location_not: String
  2603. location_in: [String!]
  2604. location_not_in: [String!]
  2605. location_lt: String
  2606. location_lte: String
  2607. location_gt: String
  2608. location_gte: String
  2609. location_contains: String
  2610. location_not_contains: String
  2611. location_starts_with: String
  2612. location_not_starts_with: String
  2613. location_ends_with: String
  2614. location_not_ends_with: String
  2615. temperature: Float
  2616. temperature_not: Float
  2617. temperature_in: [Float!]
  2618. temperature_not_in: [Float!]
  2619. temperature_lt: Float
  2620. temperature_lte: Float
  2621. temperature_gt: Float
  2622. temperature_gte: Float
  2623. startTime: DateTime
  2624. startTime_not: DateTime
  2625. startTime_in: [DateTime!]
  2626. startTime_not_in: [DateTime!]
  2627. startTime_lt: DateTime
  2628. startTime_lte: DateTime
  2629. startTime_gt: DateTime
  2630. startTime_gte: DateTime
  2631. endTime: DateTime
  2632. endTime_not: DateTime
  2633. endTime_in: [DateTime!]
  2634. endTime_not_in: [DateTime!]
  2635. endTime_lt: DateTime
  2636. endTime_lte: DateTime
  2637. endTime_gt: DateTime
  2638. endTime_gte: DateTime
  2639. log_every: EventWhereInput
  2640. log_some: EventWhereInput
  2641. log_none: EventWhereInput
  2642. comments_every: CommentWhereInput
  2643. comments_some: CommentWhereInput
  2644. comments_none: CommentWhereInput
  2645. measurements_every: MeasurementWhereInput
  2646. measurements_some: MeasurementWhereInput
  2647. measurements_none: MeasurementWhereInput
  2648. setup: SetupWhereInput
  2649. AND: [MeasurementRunWhereInput!]
  2650. OR: [MeasurementRunWhereInput!]
  2651. NOT: [MeasurementRunWhereInput!]
  2652. }
  2653. input MeasurementRunWhereUniqueInput {
  2654. id: ID
  2655. }
  2656. input MeasurementScalarWhereInput {
  2657. id: ID
  2658. id_not: ID
  2659. id_in: [ID!]
  2660. id_not_in: [ID!]
  2661. id_lt: ID
  2662. id_lte: ID
  2663. id_gt: ID
  2664. id_gte: ID
  2665. id_contains: ID
  2666. id_not_contains: ID
  2667. id_starts_with: ID
  2668. id_not_starts_with: ID
  2669. id_ends_with: ID
  2670. id_not_ends_with: ID
  2671. createdAt: DateTime
  2672. createdAt_not: DateTime
  2673. createdAt_in: [DateTime!]
  2674. createdAt_not_in: [DateTime!]
  2675. createdAt_lt: DateTime
  2676. createdAt_lte: DateTime
  2677. createdAt_gt: DateTime
  2678. createdAt_gte: DateTime
  2679. intValue: Int
  2680. intValue_not: Int
  2681. intValue_in: [Int!]
  2682. intValue_not_in: [Int!]
  2683. intValue_lt: Int
  2684. intValue_lte: Int
  2685. intValue_gt: Int
  2686. intValue_gte: Int
  2687. floatValue: Float
  2688. floatValue_not: Float
  2689. floatValue_in: [Float!]
  2690. floatValue_not_in: [Float!]
  2691. floatValue_lt: Float
  2692. floatValue_lte: Float
  2693. floatValue_gt: Float
  2694. floatValue_gte: Float
  2695. stringValue: String
  2696. stringValue_not: String
  2697. stringValue_in: [String!]
  2698. stringValue_not_in: [String!]
  2699. stringValue_lt: String
  2700. stringValue_lte: String
  2701. stringValue_gt: String
  2702. stringValue_gte: String
  2703. stringValue_contains: String
  2704. stringValue_not_contains: String
  2705. stringValue_starts_with: String
  2706. stringValue_not_starts_with: String
  2707. stringValue_ends_with: String
  2708. stringValue_not_ends_with: String
  2709. AND: [MeasurementScalarWhereInput!]
  2710. OR: [MeasurementScalarWhereInput!]
  2711. NOT: [MeasurementScalarWhereInput!]
  2712. }
  2713. type MeasurementSubscriptionPayload {
  2714. mutation: MutationType!
  2715. node: Measurement
  2716. updatedFields: [String!]
  2717. previousValues: MeasurementPreviousValues
  2718. }
  2719. input MeasurementSubscriptionWhereInput {
  2720. mutation_in: [MutationType!]
  2721. updatedFields_contains: String
  2722. updatedFields_contains_every: [String!]
  2723. updatedFields_contains_some: [String!]
  2724. node: MeasurementWhereInput
  2725. AND: [MeasurementSubscriptionWhereInput!]
  2726. OR: [MeasurementSubscriptionWhereInput!]
  2727. NOT: [MeasurementSubscriptionWhereInput!]
  2728. }
  2729. input MeasurementUpdateDataInput {
  2730. intValue: Int
  2731. floatValue: Float
  2732. stringValue: String
  2733. }
  2734. input MeasurementUpdateInput {
  2735. intValue: Int
  2736. floatValue: Float
  2737. stringValue: String
  2738. }
  2739. input MeasurementUpdateManyDataInput {
  2740. intValue: Int
  2741. floatValue: Float
  2742. stringValue: String
  2743. }
  2744. input MeasurementUpdateManyInput {
  2745. create: [MeasurementCreateInput!]
  2746. update: [MeasurementUpdateWithWhereUniqueNestedInput!]
  2747. upsert: [MeasurementUpsertWithWhereUniqueNestedInput!]
  2748. delete: [MeasurementWhereUniqueInput!]
  2749. connect: [MeasurementWhereUniqueInput!]
  2750. set: [MeasurementWhereUniqueInput!]
  2751. disconnect: [MeasurementWhereUniqueInput!]
  2752. deleteMany: [MeasurementScalarWhereInput!]
  2753. updateMany: [MeasurementUpdateManyWithWhereNestedInput!]
  2754. }
  2755. input MeasurementUpdateManyMutationInput {
  2756. intValue: Int
  2757. floatValue: Float
  2758. stringValue: String
  2759. }
  2760. input MeasurementUpdateManyWithWhereNestedInput {
  2761. where: MeasurementScalarWhereInput!
  2762. data: MeasurementUpdateManyDataInput!
  2763. }
  2764. input MeasurementUpdateWithWhereUniqueNestedInput {
  2765. where: MeasurementWhereUniqueInput!
  2766. data: MeasurementUpdateDataInput!
  2767. }
  2768. input MeasurementUpsertWithWhereUniqueNestedInput {
  2769. where: MeasurementWhereUniqueInput!
  2770. update: MeasurementUpdateDataInput!
  2771. create: MeasurementCreateInput!
  2772. }
  2773. input MeasurementWhereInput {
  2774. id: ID
  2775. id_not: ID
  2776. id_in: [ID!]
  2777. id_not_in: [ID!]
  2778. id_lt: ID
  2779. id_lte: ID
  2780. id_gt: ID
  2781. id_gte: ID
  2782. id_contains: ID
  2783. id_not_contains: ID
  2784. id_starts_with: ID
  2785. id_not_starts_with: ID
  2786. id_ends_with: ID
  2787. id_not_ends_with: ID
  2788. createdAt: DateTime
  2789. createdAt_not: DateTime
  2790. createdAt_in: [DateTime!]
  2791. createdAt_not_in: [DateTime!]
  2792. createdAt_lt: DateTime
  2793. createdAt_lte: DateTime
  2794. createdAt_gt: DateTime
  2795. createdAt_gte: DateTime
  2796. intValue: Int
  2797. intValue_not: Int
  2798. intValue_in: [Int!]
  2799. intValue_not_in: [Int!]
  2800. intValue_lt: Int
  2801. intValue_lte: Int
  2802. intValue_gt: Int
  2803. intValue_gte: Int
  2804. floatValue: Float
  2805. floatValue_not: Float
  2806. floatValue_in: [Float!]
  2807. floatValue_not_in: [Float!]
  2808. floatValue_lt: Float
  2809. floatValue_lte: Float
  2810. floatValue_gt: Float
  2811. floatValue_gte: Float
  2812. stringValue: String
  2813. stringValue_not: String
  2814. stringValue_in: [String!]
  2815. stringValue_not_in: [String!]
  2816. stringValue_lt: String
  2817. stringValue_lte: String
  2818. stringValue_gt: String
  2819. stringValue_gte: String
  2820. stringValue_contains: String
  2821. stringValue_not_contains: String
  2822. stringValue_starts_with: String
  2823. stringValue_not_starts_with: String
  2824. stringValue_ends_with: String
  2825. stringValue_not_ends_with: String
  2826. AND: [MeasurementWhereInput!]
  2827. OR: [MeasurementWhereInput!]
  2828. NOT: [MeasurementWhereInput!]
  2829. }
  2830. input MeasurementWhereUniqueInput {
  2831. id: ID
  2832. }
  2833. type Meta {
  2834. id: ID!
  2835. key: String!
  2836. value: String!
  2837. }
  2838. type MetaConnection {
  2839. pageInfo: PageInfo!
  2840. edges: [MetaEdge]!
  2841. aggregate: AggregateMeta!
  2842. }
  2843. input MetaCreateInput {
  2844. key: String!
  2845. value: String!
  2846. }
  2847. type MetaEdge {
  2848. node: Meta!
  2849. cursor: String!
  2850. }
  2851. enum MetaOrderByInput {
  2852. id_ASC
  2853. id_DESC
  2854. key_ASC
  2855. key_DESC
  2856. value_ASC
  2857. value_DESC
  2858. createdAt_ASC
  2859. createdAt_DESC
  2860. updatedAt_ASC
  2861. updatedAt_DESC
  2862. }
  2863. type MetaPreviousValues {
  2864. id: ID!
  2865. key: String!
  2866. value: String!
  2867. }
  2868. type MetaSubscriptionPayload {
  2869. mutation: MutationType!
  2870. node: Meta
  2871. updatedFields: [String!]
  2872. previousValues: MetaPreviousValues
  2873. }
  2874. input MetaSubscriptionWhereInput {
  2875. mutation_in: [MutationType!]
  2876. updatedFields_contains: String
  2877. updatedFields_contains_every: [String!]
  2878. updatedFields_contains_some: [String!]
  2879. node: MetaWhereInput
  2880. AND: [MetaSubscriptionWhereInput!]
  2881. OR: [MetaSubscriptionWhereInput!]
  2882. NOT: [MetaSubscriptionWhereInput!]
  2883. }
  2884. input MetaUpdateInput {
  2885. key: String
  2886. value: String
  2887. }
  2888. input MetaUpdateManyMutationInput {
  2889. key: String
  2890. value: String
  2891. }
  2892. input MetaWhereInput {
  2893. id: ID
  2894. id_not: ID
  2895. id_in: [ID!]
  2896. id_not_in: [ID!]
  2897. id_lt: ID
  2898. id_lte: ID
  2899. id_gt: ID
  2900. id_gte: ID
  2901. id_contains: ID
  2902. id_not_contains: ID
  2903. id_starts_with: ID
  2904. id_not_starts_with: ID
  2905. id_ends_with: ID
  2906. id_not_ends_with: ID
  2907. key: String
  2908. key_not: String
  2909. key_in: [String!]
  2910. key_not_in: [String!]
  2911. key_lt: String
  2912. key_lte: String
  2913. key_gt: String
  2914. key_gte: String
  2915. key_contains: String
  2916. key_not_contains: String
  2917. key_starts_with: String
  2918. key_not_starts_with: String
  2919. key_ends_with: String
  2920. key_not_ends_with: String
  2921. value: String
  2922. value_not: String
  2923. value_in: [String!]
  2924. value_not_in: [String!]
  2925. value_lt: String
  2926. value_lte: String
  2927. value_gt: String
  2928. value_gte: String
  2929. value_contains: String
  2930. value_not_contains: String
  2931. value_starts_with: String
  2932. value_not_starts_with: String
  2933. value_ends_with: String
  2934. value_not_ends_with: String
  2935. AND: [MetaWhereInput!]
  2936. OR: [MetaWhereInput!]
  2937. NOT: [MetaWhereInput!]
  2938. }
  2939. input MetaWhereUniqueInput {
  2940. id: ID
  2941. }
  2942. type Mutation {
  2943. createCharacterization(data: CharacterizationCreateInput!): Characterization!
  2944. updateCharacterization(data: CharacterizationUpdateInput!, where: CharacterizationWhereUniqueInput!): Characterization
  2945. updateManyCharacterizations(data: CharacterizationUpdateManyMutationInput!, where: CharacterizationWhereInput): BatchPayload!
  2946. upsertCharacterization(where: CharacterizationWhereUniqueInput!, create: CharacterizationCreateInput!, update: CharacterizationUpdateInput!): Characterization!
  2947. deleteCharacterization(where: CharacterizationWhereUniqueInput!): Characterization
  2948. deleteManyCharacterizations(where: CharacterizationWhereInput): BatchPayload!
  2949. createComment(data: CommentCreateInput!): Comment!
  2950. updateComment(data: CommentUpdateInput!, where: CommentWhereUniqueInput!): Comment
  2951. updateManyComments(data: CommentUpdateManyMutationInput!, where: CommentWhereInput): BatchPayload!
  2952. upsertComment(where: CommentWhereUniqueInput!, create: CommentCreateInput!, update: CommentUpdateInput!): Comment!
  2953. deleteComment(where: CommentWhereUniqueInput!): Comment
  2954. deleteManyComments(where: CommentWhereInput): BatchPayload!
  2955. createDUT(data: DUTCreateInput!): DUT!
  2956. updateDUT(data: DUTUpdateInput!, where: DUTWhereUniqueInput!): DUT
  2957. updateManyDUTs(data: DUTUpdateManyMutationInput!, where: DUTWhereInput): BatchPayload!
  2958. upsertDUT(where: DUTWhereUniqueInput!, create: DUTCreateInput!, update: DUTUpdateInput!): DUT!
  2959. deleteDUT(where: DUTWhereUniqueInput!): DUT
  2960. deleteManyDUTs(where: DUTWhereInput): BatchPayload!
  2961. createEvent(data: EventCreateInput!): Event!
  2962. updateEvent(data: EventUpdateInput!, where: EventWhereUniqueInput!): Event
  2963. updateManyEvents(data: EventUpdateManyMutationInput!, where: EventWhereInput): BatchPayload!
  2964. upsertEvent(where: EventWhereUniqueInput!, create: EventCreateInput!, update: EventUpdateInput!): Event!
  2965. deleteEvent(where: EventWhereUniqueInput!): Event
  2966. deleteManyEvents(where: EventWhereInput): BatchPayload!
  2967. createFile(data: FileCreateInput!): File!
  2968. updateFile(data: FileUpdateInput!, where: FileWhereUniqueInput!): File
  2969. updateManyFiles(data: FileUpdateManyMutationInput!, where: FileWhereInput): BatchPayload!
  2970. upsertFile(where: FileWhereUniqueInput!, create: FileCreateInput!, update: FileUpdateInput!): File!
  2971. deleteFile(where: FileWhereUniqueInput!): File
  2972. deleteManyFiles(where: FileWhereInput): BatchPayload!
  2973. createInstrument(data: InstrumentCreateInput!): Instrument!
  2974. updateInstrument(data: InstrumentUpdateInput!, where: InstrumentWhereUniqueInput!): Instrument
  2975. updateManyInstruments(data: InstrumentUpdateManyMutationInput!, where: InstrumentWhereInput): BatchPayload!
  2976. upsertInstrument(where: InstrumentWhereUniqueInput!, create: InstrumentCreateInput!, update: InstrumentUpdateInput!): Instrument!
  2977. deleteInstrument(where: InstrumentWhereUniqueInput!): Instrument
  2978. deleteManyInstruments(where: InstrumentWhereInput): BatchPayload!
  2979. createInstrumentCommand(data: InstrumentCommandCreateInput!): InstrumentCommand!
  2980. updateInstrumentCommand(data: InstrumentCommandUpdateInput!, where: InstrumentCommandWhereUniqueInput!): InstrumentCommand
  2981. updateManyInstrumentCommands(data: InstrumentCommandUpdateManyMutationInput!, where: InstrumentCommandWhereInput): BatchPayload!
  2982. upsertInstrumentCommand(where: InstrumentCommandWhereUniqueInput!, create: InstrumentCommandCreateInput!, update: InstrumentCommandUpdateInput!): InstrumentCommand!
  2983. deleteInstrumentCommand(where: InstrumentCommandWhereUniqueInput!): InstrumentCommand
  2984. deleteManyInstrumentCommands(where: InstrumentCommandWhereInput): BatchPayload!
  2985. createInstrumentInstance(data: InstrumentInstanceCreateInput!): InstrumentInstance!
  2986. updateInstrumentInstance(data: InstrumentInstanceUpdateInput!, where: InstrumentInstanceWhereUniqueInput!): InstrumentInstance
  2987. updateManyInstrumentInstances(data: InstrumentInstanceUpdateManyMutationInput!, where: InstrumentInstanceWhereInput): BatchPayload!
  2988. upsertInstrumentInstance(where: InstrumentInstanceWhereUniqueInput!, create: InstrumentInstanceCreateInput!, update: InstrumentInstanceUpdateInput!): InstrumentInstance!
  2989. deleteInstrumentInstance(where: InstrumentInstanceWhereUniqueInput!): InstrumentInstance
  2990. deleteManyInstrumentInstances(where: InstrumentInstanceWhereInput): BatchPayload!
  2991. createInstrumentParameter(data: InstrumentParameterCreateInput!): InstrumentParameter!
  2992. updateInstrumentParameter(data: InstrumentParameterUpdateInput!, where: InstrumentParameterWhereUniqueInput!): InstrumentParameter
  2993. updateManyInstrumentParameters(data: InstrumentParameterUpdateManyMutationInput!, where: InstrumentParameterWhereInput): BatchPayload!
  2994. upsertInstrumentParameter(where: InstrumentParameterWhereUniqueInput!, create: InstrumentParameterCreateInput!, update: InstrumentParameterUpdateInput!): InstrumentParameter!
  2995. deleteInstrumentParameter(where: InstrumentParameterWhereUniqueInput!): InstrumentParameter
  2996. deleteManyInstrumentParameters(where: InstrumentParameterWhereInput): BatchPayload!
  2997. createMeasurement(data: MeasurementCreateInput!): Measurement!
  2998. updateMeasurement(data: MeasurementUpdateInput!, where: MeasurementWhereUniqueInput!): Measurement
  2999. updateManyMeasurements(data: MeasurementUpdateManyMutationInput!, where: MeasurementWhereInput): BatchPayload!
  3000. upsertMeasurement(where: MeasurementWhereUniqueInput!, create: MeasurementCreateInput!, update: MeasurementUpdateInput!): Measurement!
  3001. deleteMeasurement(where: MeasurementWhereUniqueInput!): Measurement
  3002. deleteManyMeasurements(where: MeasurementWhereInput): BatchPayload!
  3003. createMeasurementRun(data: MeasurementRunCreateInput!): MeasurementRun!
  3004. updateMeasurementRun(data: MeasurementRunUpdateInput!, where: MeasurementRunWhereUniqueInput!): MeasurementRun
  3005. updateManyMeasurementRuns(data: MeasurementRunUpdateManyMutationInput!, where: MeasurementRunWhereInput): BatchPayload!
  3006. upsertMeasurementRun(where: MeasurementRunWhereUniqueInput!, create: MeasurementRunCreateInput!, update: MeasurementRunUpdateInput!): MeasurementRun!
  3007. deleteMeasurementRun(where: MeasurementRunWhereUniqueInput!): MeasurementRun
  3008. deleteManyMeasurementRuns(where: MeasurementRunWhereInput): BatchPayload!
  3009. createMeta(data: MetaCreateInput!): Meta!
  3010. updateMeta(data: MetaUpdateInput!, where: MetaWhereUniqueInput!): Meta
  3011. updateManyMetas(data: MetaUpdateManyMutationInput!, where: MetaWhereInput): BatchPayload!
  3012. upsertMeta(where: MetaWhereUniqueInput!, create: MetaCreateInput!, update: MetaUpdateInput!): Meta!
  3013. deleteMeta(where: MetaWhereUniqueInput!): Meta
  3014. deleteManyMetas(where: MetaWhereInput): BatchPayload!
  3015. createProject(data: ProjectCreateInput!): Project!
  3016. updateProject(data: ProjectUpdateInput!, where: ProjectWhereUniqueInput!): Project
  3017. updateManyProjects(data: ProjectUpdateManyMutationInput!, where: ProjectWhereInput): BatchPayload!
  3018. upsertProject(where: ProjectWhereUniqueInput!, create: ProjectCreateInput!, update: ProjectUpdateInput!): Project!
  3019. deleteProject(where: ProjectWhereUniqueInput!): Project
  3020. deleteManyProjects(where: ProjectWhereInput): BatchPayload!
  3021. createProjectVersion(data: ProjectVersionCreateInput!): ProjectVersion!
  3022. updateProjectVersion(data: ProjectVersionUpdateInput!, where: ProjectVersionWhereUniqueInput!): ProjectVersion
  3023. updateManyProjectVersions(data: ProjectVersionUpdateManyMutationInput!, where: ProjectVersionWhereInput): BatchPayload!
  3024. upsertProjectVersion(where: ProjectVersionWhereUniqueInput!, create: ProjectVersionCreateInput!, update: ProjectVersionUpdateInput!): ProjectVersion!
  3025. deleteProjectVersion(where: ProjectVersionWhereUniqueInput!): ProjectVersion
  3026. deleteManyProjectVersions(where: ProjectVersionWhereInput): BatchPayload!
  3027. createSetup(data: SetupCreateInput!): Setup!
  3028. updateSetup(data: SetupUpdateInput!, where: SetupWhereUniqueInput!): Setup
  3029. updateManySetups(data: SetupUpdateManyMutationInput!, where: SetupWhereInput): BatchPayload!
  3030. upsertSetup(where: SetupWhereUniqueInput!, create: SetupCreateInput!, update: SetupUpdateInput!): Setup!
  3031. deleteSetup(where: SetupWhereUniqueInput!): Setup
  3032. deleteManySetups(where: SetupWhereInput): BatchPayload!
  3033. createSetupHardware(data: SetupHardwareCreateInput!): SetupHardware!
  3034. updateSetupHardware(data: SetupHardwareUpdateInput!, where: SetupHardwareWhereUniqueInput!): SetupHardware
  3035. updateManySetupHardwares(data: SetupHardwareUpdateManyMutationInput!, where: SetupHardwareWhereInput): BatchPayload!
  3036. upsertSetupHardware(where: SetupHardwareWhereUniqueInput!, create: SetupHardwareCreateInput!, update: SetupHardwareUpdateInput!): SetupHardware!
  3037. deleteSetupHardware(where: SetupHardwareWhereUniqueInput!): SetupHardware
  3038. deleteManySetupHardwares(where: SetupHardwareWhereInput): BatchPayload!
  3039. createSetupHardwareInstance(data: SetupHardwareInstanceCreateInput!): SetupHardwareInstance!
  3040. updateSetupHardwareInstance(data: SetupHardwareInstanceUpdateInput!, where: SetupHardwareInstanceWhereUniqueInput!): SetupHardwareInstance
  3041. updateManySetupHardwareInstances(data: SetupHardwareInstanceUpdateManyMutationInput!, where: SetupHardwareInstanceWhereInput): BatchPayload!
  3042. upsertSetupHardwareInstance(where: SetupHardwareInstanceWhereUniqueInput!, create: SetupHardwareInstanceCreateInput!, update: SetupHardwareInstanceUpdateInput!): SetupHardwareInstance!
  3043. deleteSetupHardwareInstance(where: SetupHardwareInstanceWhereUniqueInput!): SetupHardwareInstance
  3044. deleteManySetupHardwareInstances(where: SetupHardwareInstanceWhereInput): BatchPayload!
  3045. createUser(data: UserCreateInput!): User!
  3046. updateUser(data: UserUpdateInput!, where: UserWhereUniqueInput!): User
  3047. updateManyUsers(data: UserUpdateManyMutationInput!, where: UserWhereInput): BatchPayload!
  3048. upsertUser(where: UserWhereUniqueInput!, create: UserCreateInput!, update: UserUpdateInput!): User!
  3049. deleteUser(where: UserWhereUniqueInput!): User
  3050. deleteManyUsers(where: UserWhereInput): BatchPayload!
  3051. }
  3052. enum MutationType {
  3053. CREATED
  3054. UPDATED
  3055. DELETED
  3056. }
  3057. interface Node {
  3058. id: ID!
  3059. }
  3060. type PageInfo {
  3061. hasNextPage: Boolean!
  3062. hasPreviousPage: Boolean!
  3063. startCursor: String
  3064. endCursor: String
  3065. }
  3066. type Project {
  3067. id: ID!
  3068. name: String!
  3069. abbreviation: String!
  3070. description: String
  3071. files(where: FileWhereInput, orderBy: FileOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [File!]
  3072. versions(where: ProjectVersionWhereInput, orderBy: ProjectVersionOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [ProjectVersion!]
  3073. }
  3074. type ProjectConnection {
  3075. pageInfo: PageInfo!
  3076. edges: [ProjectEdge]!
  3077. aggregate: AggregateProject!
  3078. }
  3079. input ProjectCreateInput {
  3080. name: String!
  3081. abbreviation: String!
  3082. description: String
  3083. files: FileCreateManyInput
  3084. versions: ProjectVersionCreateManyWithoutProjectInput
  3085. }
  3086. input ProjectCreateOneWithoutVersionsInput {
  3087. create: ProjectCreateWithoutVersionsInput
  3088. connect: ProjectWhereUniqueInput
  3089. }
  3090. input ProjectCreateWithoutVersionsInput {
  3091. name: String!
  3092. abbreviation: String!
  3093. description: String
  3094. files: FileCreateManyInput
  3095. }
  3096. type ProjectEdge {
  3097. node: Project!
  3098. cursor: String!
  3099. }
  3100. enum ProjectOrderByInput {
  3101. id_ASC
  3102. id_DESC
  3103. name_ASC
  3104. name_DESC
  3105. abbreviation_ASC
  3106. abbreviation_DESC
  3107. description_ASC
  3108. description_DESC
  3109. createdAt_ASC
  3110. createdAt_DESC
  3111. updatedAt_ASC
  3112. updatedAt_DESC
  3113. }
  3114. type ProjectPreviousValues {
  3115. id: ID!
  3116. name: String!
  3117. abbreviation: String!
  3118. description: String
  3119. }
  3120. type ProjectSubscriptionPayload {
  3121. mutation: MutationType!
  3122. node: Project
  3123. updatedFields: [String!]
  3124. previousValues: ProjectPreviousValues
  3125. }
  3126. input ProjectSubscriptionWhereInput {
  3127. mutation_in: [MutationType!]
  3128. updatedFields_contains: String
  3129. updatedFields_contains_every: [String!]
  3130. updatedFields_contains_some: [String!]
  3131. node: ProjectWhereInput
  3132. AND: [ProjectSubscriptionWhereInput!]
  3133. OR: [ProjectSubscriptionWhereInput!]
  3134. NOT: [ProjectSubscriptionWhereInput!]
  3135. }
  3136. input ProjectUpdateInput {
  3137. name: String
  3138. abbreviation: String
  3139. description: String
  3140. files: FileUpdateManyInput
  3141. versions: ProjectVersionUpdateManyWithoutProjectInput
  3142. }
  3143. input ProjectUpdateManyMutationInput {
  3144. name: String
  3145. abbreviation: String
  3146. description: String
  3147. }
  3148. input ProjectUpdateOneRequiredWithoutVersionsInput {
  3149. create: ProjectCreateWithoutVersionsInput
  3150. update: ProjectUpdateWithoutVersionsDataInput
  3151. upsert: ProjectUpsertWithoutVersionsInput
  3152. connect: ProjectWhereUniqueInput
  3153. }
  3154. input ProjectUpdateWithoutVersionsDataInput {
  3155. name: String
  3156. abbreviation: String
  3157. description: String
  3158. files: FileUpdateManyInput
  3159. }
  3160. input ProjectUpsertWithoutVersionsInput {
  3161. update: ProjectUpdateWithoutVersionsDataInput!
  3162. create: ProjectCreateWithoutVersionsInput!
  3163. }
  3164. type ProjectVersion {
  3165. id: ID!
  3166. name: String!
  3167. changes: [String!]!
  3168. date: DateTime!
  3169. project: Project!
  3170. }
  3171. type ProjectVersionConnection {
  3172. pageInfo: PageInfo!
  3173. edges: [ProjectVersionEdge]!
  3174. aggregate: AggregateProjectVersion!
  3175. }
  3176. input ProjectVersionCreatechangesInput {
  3177. set: [String!]
  3178. }
  3179. input ProjectVersionCreateInput {
  3180. name: String!
  3181. changes: ProjectVersionCreatechangesInput
  3182. date: DateTime!
  3183. project: ProjectCreateOneWithoutVersionsInput!
  3184. }
  3185. input ProjectVersionCreateManyWithoutProjectInput {
  3186. create: [ProjectVersionCreateWithoutProjectInput!]
  3187. connect: [ProjectVersionWhereUniqueInput!]
  3188. }
  3189. input ProjectVersionCreateOneInput {
  3190. create: ProjectVersionCreateInput
  3191. connect: ProjectVersionWhereUniqueInput
  3192. }
  3193. input ProjectVersionCreateWithoutProjectInput {
  3194. name: String!
  3195. changes: ProjectVersionCreatechangesInput
  3196. date: DateTime!
  3197. }
  3198. type ProjectVersionEdge {
  3199. node: ProjectVersion!
  3200. cursor: String!
  3201. }
  3202. enum ProjectVersionOrderByInput {
  3203. id_ASC
  3204. id_DESC
  3205. name_ASC
  3206. name_DESC
  3207. date_ASC
  3208. date_DESC
  3209. createdAt_ASC
  3210. createdAt_DESC
  3211. updatedAt_ASC
  3212. updatedAt_DESC
  3213. }
  3214. type ProjectVersionPreviousValues {
  3215. id: ID!
  3216. name: String!
  3217. changes: [String!]!
  3218. date: DateTime!
  3219. }
  3220. input ProjectVersionScalarWhereInput {
  3221. id: ID
  3222. id_not: ID
  3223. id_in: [ID!]
  3224. id_not_in: [ID!]
  3225. id_lt: ID
  3226. id_lte: ID
  3227. id_gt: ID
  3228. id_gte: ID
  3229. id_contains: ID
  3230. id_not_contains: ID
  3231. id_starts_with: ID
  3232. id_not_starts_with: ID
  3233. id_ends_with: ID
  3234. id_not_ends_with: ID
  3235. name: String
  3236. name_not: String
  3237. name_in: [String!]
  3238. name_not_in: [String!]
  3239. name_lt: String
  3240. name_lte: String
  3241. name_gt: String
  3242. name_gte: String
  3243. name_contains: String
  3244. name_not_contains: String
  3245. name_starts_with: String
  3246. name_not_starts_with: String
  3247. name_ends_with: String
  3248. name_not_ends_with: String
  3249. date: DateTime
  3250. date_not: DateTime
  3251. date_in: [DateTime!]
  3252. date_not_in: [DateTime!]
  3253. date_lt: DateTime
  3254. date_lte: DateTime
  3255. date_gt: DateTime
  3256. date_gte: DateTime
  3257. AND: [ProjectVersionScalarWhereInput!]
  3258. OR: [ProjectVersionScalarWhereInput!]
  3259. NOT: [ProjectVersionScalarWhereInput!]
  3260. }
  3261. type ProjectVersionSubscriptionPayload {
  3262. mutation: MutationType!
  3263. node: ProjectVersion
  3264. updatedFields: [String!]
  3265. previousValues: ProjectVersionPreviousValues
  3266. }
  3267. input ProjectVersionSubscriptionWhereInput {
  3268. mutation_in: [MutationType!]
  3269. updatedFields_contains: String
  3270. updatedFields_contains_every: [String!]
  3271. updatedFields_contains_some: [String!]
  3272. node: ProjectVersionWhereInput
  3273. AND: [ProjectVersionSubscriptionWhereInput!]
  3274. OR: [ProjectVersionSubscriptionWhereInput!]
  3275. NOT: [ProjectVersionSubscriptionWhereInput!]
  3276. }
  3277. input ProjectVersionUpdatechangesInput {
  3278. set: [String!]
  3279. }
  3280. input ProjectVersionUpdateDataInput {
  3281. name: String
  3282. changes: ProjectVersionUpdatechangesInput
  3283. date: DateTime
  3284. project: ProjectUpdateOneRequiredWithoutVersionsInput
  3285. }
  3286. input ProjectVersionUpdateInput {
  3287. name: String
  3288. changes: ProjectVersionUpdatechangesInput
  3289. date: DateTime
  3290. project: ProjectUpdateOneRequiredWithoutVersionsInput
  3291. }
  3292. input ProjectVersionUpdateManyDataInput {
  3293. name: String
  3294. changes: ProjectVersionUpdatechangesInput
  3295. date: DateTime
  3296. }
  3297. input ProjectVersionUpdateManyMutationInput {
  3298. name: String
  3299. changes: ProjectVersionUpdatechangesInput
  3300. date: DateTime
  3301. }
  3302. input ProjectVersionUpdateManyWithoutProjectInput {
  3303. create: [ProjectVersionCreateWithoutProjectInput!]
  3304. delete: [ProjectVersionWhereUniqueInput!]
  3305. connect: [ProjectVersionWhereUniqueInput!]
  3306. set: [ProjectVersionWhereUniqueInput!]
  3307. disconnect: [ProjectVersionWhereUniqueInput!]
  3308. update: [ProjectVersionUpdateWithWhereUniqueWithoutProjectInput!]
  3309. upsert: [ProjectVersionUpsertWithWhereUniqueWithoutProjectInput!]
  3310. deleteMany: [ProjectVersionScalarWhereInput!]
  3311. updateMany: [ProjectVersionUpdateManyWithWhereNestedInput!]
  3312. }
  3313. input ProjectVersionUpdateManyWithWhereNestedInput {
  3314. where: ProjectVersionScalarWhereInput!
  3315. data: ProjectVersionUpdateManyDataInput!
  3316. }
  3317. input ProjectVersionUpdateOneRequiredInput {
  3318. create: ProjectVersionCreateInput
  3319. update: ProjectVersionUpdateDataInput
  3320. upsert: ProjectVersionUpsertNestedInput
  3321. connect: ProjectVersionWhereUniqueInput
  3322. }
  3323. input ProjectVersionUpdateWithoutProjectDataInput {
  3324. name: String
  3325. changes: ProjectVersionUpdatechangesInput
  3326. date: DateTime
  3327. }
  3328. input ProjectVersionUpdateWithWhereUniqueWithoutProjectInput {
  3329. where: ProjectVersionWhereUniqueInput!
  3330. data: ProjectVersionUpdateWithoutProjectDataInput!
  3331. }
  3332. input ProjectVersionUpsertNestedInput {
  3333. update: ProjectVersionUpdateDataInput!
  3334. create: ProjectVersionCreateInput!
  3335. }
  3336. input ProjectVersionUpsertWithWhereUniqueWithoutProjectInput {
  3337. where: ProjectVersionWhereUniqueInput!
  3338. update: ProjectVersionUpdateWithoutProjectDataInput!
  3339. create: ProjectVersionCreateWithoutProjectInput!
  3340. }
  3341. input ProjectVersionWhereInput {
  3342. id: ID
  3343. id_not: ID
  3344. id_in: [ID!]
  3345. id_not_in: [ID!]
  3346. id_lt: ID
  3347. id_lte: ID
  3348. id_gt: ID
  3349. id_gte: ID
  3350. id_contains: ID
  3351. id_not_contains: ID
  3352. id_starts_with: ID
  3353. id_not_starts_with: ID
  3354. id_ends_with: ID
  3355. id_not_ends_with: ID
  3356. name: String
  3357. name_not: String
  3358. name_in: [String!]
  3359. name_not_in: [String!]
  3360. name_lt: String
  3361. name_lte: String
  3362. name_gt: String
  3363. name_gte: String
  3364. name_contains: String
  3365. name_not_contains: String
  3366. name_starts_with: String
  3367. name_not_starts_with: String
  3368. name_ends_with: String
  3369. name_not_ends_with: String
  3370. date: DateTime
  3371. date_not: DateTime
  3372. date_in: [DateTime!]
  3373. date_not_in: [DateTime!]
  3374. date_lt: DateTime
  3375. date_lte: DateTime
  3376. date_gt: DateTime
  3377. date_gte: DateTime
  3378. project: ProjectWhereInput
  3379. AND: [ProjectVersionWhereInput!]
  3380. OR: [ProjectVersionWhereInput!]
  3381. NOT: [ProjectVersionWhereInput!]
  3382. }
  3383. input ProjectVersionWhereUniqueInput {
  3384. id: ID
  3385. name: String
  3386. }
  3387. input ProjectWhereInput {
  3388. id: ID
  3389. id_not: ID
  3390. id_in: [ID!]
  3391. id_not_in: [ID!]
  3392. id_lt: ID
  3393. id_lte: ID
  3394. id_gt: ID
  3395. id_gte: ID
  3396. id_contains: ID
  3397. id_not_contains: ID
  3398. id_starts_with: ID
  3399. id_not_starts_with: ID
  3400. id_ends_with: ID
  3401. id_not_ends_with: ID
  3402. name: String
  3403. name_not: String
  3404. name_in: [String!]
  3405. name_not_in: [String!]
  3406. name_lt: String
  3407. name_lte: String
  3408. name_gt: String
  3409. name_gte: String
  3410. name_contains: String
  3411. name_not_contains: String
  3412. name_starts_with: String
  3413. name_not_starts_with: String
  3414. name_ends_with: String
  3415. name_not_ends_with: String
  3416. abbreviation: String
  3417. abbreviation_not: String
  3418. abbreviation_in: [String!]
  3419. abbreviation_not_in: [String!]
  3420. abbreviation_lt: String
  3421. abbreviation_lte: String
  3422. abbreviation_gt: String
  3423. abbreviation_gte: String
  3424. abbreviation_contains: String
  3425. abbreviation_not_contains: String
  3426. abbreviation_starts_with: String
  3427. abbreviation_not_starts_with: String
  3428. abbreviation_ends_with: String
  3429. abbreviation_not_ends_with: String
  3430. description: String
  3431. description_not: String
  3432. description_in: [String!]
  3433. description_not_in: [String!]
  3434. description_lt: String
  3435. description_lte: String
  3436. description_gt: String
  3437. description_gte: String
  3438. description_contains: String
  3439. description_not_contains: String
  3440. description_starts_with: String
  3441. description_not_starts_with: String
  3442. description_ends_with: String
  3443. description_not_ends_with: String
  3444. files_every: FileWhereInput
  3445. files_some: FileWhereInput
  3446. files_none: FileWhereInput
  3447. versions_every: ProjectVersionWhereInput
  3448. versions_some: ProjectVersionWhereInput
  3449. versions_none: ProjectVersionWhereInput
  3450. AND: [ProjectWhereInput!]
  3451. OR: [ProjectWhereInput!]
  3452. NOT: [ProjectWhereInput!]
  3453. }
  3454. input ProjectWhereUniqueInput {
  3455. id: ID
  3456. name: String
  3457. abbreviation: String
  3458. }
  3459. type Query {
  3460. characterization(where: CharacterizationWhereUniqueInput!): Characterization
  3461. characterizations(where: CharacterizationWhereInput, orderBy: CharacterizationOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Characterization]!
  3462. characterizationsConnection(where: CharacterizationWhereInput, orderBy: CharacterizationOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): CharacterizationConnection!
  3463. comment(where: CommentWhereUniqueInput!): Comment
  3464. comments(where: CommentWhereInput, orderBy: CommentOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Comment]!
  3465. commentsConnection(where: CommentWhereInput, orderBy: CommentOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): CommentConnection!
  3466. dUT(where: DUTWhereUniqueInput!): DUT
  3467. dUTs(where: DUTWhereInput, orderBy: DUTOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [DUT]!
  3468. dUTsConnection(where: DUTWhereInput, orderBy: DUTOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): DUTConnection!
  3469. event(where: EventWhereUniqueInput!): Event
  3470. events(where: EventWhereInput, orderBy: EventOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Event]!
  3471. eventsConnection(where: EventWhereInput, orderBy: EventOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): EventConnection!
  3472. file(where: FileWhereUniqueInput!): File
  3473. files(where: FileWhereInput, orderBy: FileOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [File]!
  3474. filesConnection(where: FileWhereInput, orderBy: FileOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): FileConnection!
  3475. instrument(where: InstrumentWhereUniqueInput!): Instrument
  3476. instruments(where: InstrumentWhereInput, orderBy: InstrumentOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Instrument]!
  3477. instrumentsConnection(where: InstrumentWhereInput, orderBy: InstrumentOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): InstrumentConnection!
  3478. instrumentCommand(where: InstrumentCommandWhereUniqueInput!): InstrumentCommand
  3479. instrumentCommands(where: InstrumentCommandWhereInput, orderBy: InstrumentCommandOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [InstrumentCommand]!
  3480. instrumentCommandsConnection(where: InstrumentCommandWhereInput, orderBy: InstrumentCommandOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): InstrumentCommandConnection!
  3481. instrumentInstance(where: InstrumentInstanceWhereUniqueInput!): InstrumentInstance
  3482. instrumentInstances(where: InstrumentInstanceWhereInput, orderBy: InstrumentInstanceOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [InstrumentInstance]!
  3483. instrumentInstancesConnection(where: InstrumentInstanceWhereInput, orderBy: InstrumentInstanceOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): InstrumentInstanceConnection!
  3484. instrumentParameter(where: InstrumentParameterWhereUniqueInput!): InstrumentParameter
  3485. instrumentParameters(where: InstrumentParameterWhereInput, orderBy: InstrumentParameterOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [InstrumentParameter]!
  3486. instrumentParametersConnection(where: InstrumentParameterWhereInput, orderBy: InstrumentParameterOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): InstrumentParameterConnection!
  3487. measurement(where: MeasurementWhereUniqueInput!): Measurement
  3488. measurements(where: MeasurementWhereInput, orderBy: MeasurementOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Measurement]!
  3489. measurementsConnection(where: MeasurementWhereInput, orderBy: MeasurementOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): MeasurementConnection!
  3490. measurementRun(where: MeasurementRunWhereUniqueInput!): MeasurementRun
  3491. measurementRuns(where: MeasurementRunWhereInput, orderBy: MeasurementRunOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [MeasurementRun]!
  3492. measurementRunsConnection(where: MeasurementRunWhereInput, orderBy: MeasurementRunOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): MeasurementRunConnection!
  3493. meta(where: MetaWhereUniqueInput!): Meta
  3494. metas(where: MetaWhereInput, orderBy: MetaOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Meta]!
  3495. metasConnection(where: MetaWhereInput, orderBy: MetaOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): MetaConnection!
  3496. project(where: ProjectWhereUniqueInput!): Project
  3497. projects(where: ProjectWhereInput, orderBy: ProjectOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Project]!
  3498. projectsConnection(where: ProjectWhereInput, orderBy: ProjectOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): ProjectConnection!
  3499. projectVersion(where: ProjectVersionWhereUniqueInput!): ProjectVersion
  3500. projectVersions(where: ProjectVersionWhereInput, orderBy: ProjectVersionOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [ProjectVersion]!
  3501. projectVersionsConnection(where: ProjectVersionWhereInput, orderBy: ProjectVersionOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): ProjectVersionConnection!
  3502. setup(where: SetupWhereUniqueInput!): Setup
  3503. setups(where: SetupWhereInput, orderBy: SetupOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Setup]!
  3504. setupsConnection(where: SetupWhereInput, orderBy: SetupOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): SetupConnection!
  3505. setupHardware(where: SetupHardwareWhereUniqueInput!): SetupHardware
  3506. setupHardwares(where: SetupHardwareWhereInput, orderBy: SetupHardwareOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [SetupHardware]!
  3507. setupHardwaresConnection(where: SetupHardwareWhereInput, orderBy: SetupHardwareOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): SetupHardwareConnection!
  3508. setupHardwareInstance(where: SetupHardwareInstanceWhereUniqueInput!): SetupHardwareInstance
  3509. setupHardwareInstances(where: SetupHardwareInstanceWhereInput, orderBy: SetupHardwareInstanceOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [SetupHardwareInstance]!
  3510. setupHardwareInstancesConnection(where: SetupHardwareInstanceWhereInput, orderBy: SetupHardwareInstanceOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): SetupHardwareInstanceConnection!
  3511. user(where: UserWhereUniqueInput!): User
  3512. users(where: UserWhereInput, orderBy: UserOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [User]!
  3513. usersConnection(where: UserWhereInput, orderBy: UserOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): UserConnection!
  3514. node(id: ID!): Node
  3515. }
  3516. type Setup {
  3517. id: ID!
  3518. name: String!
  3519. description: String!
  3520. images(where: FileWhereInput, orderBy: FileOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [File!]
  3521. comments(where: CommentWhereInput, orderBy: CommentOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Comment!]
  3522. setupHardware(where: SetupHardwareInstanceWhereInput, orderBy: SetupHardwareInstanceOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [SetupHardwareInstance!]
  3523. instruments(where: InstrumentInstanceWhereInput, orderBy: InstrumentInstanceOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [InstrumentInstance!]
  3524. }
  3525. type SetupConnection {
  3526. pageInfo: PageInfo!
  3527. edges: [SetupEdge]!
  3528. aggregate: AggregateSetup!
  3529. }
  3530. input SetupCreateInput {
  3531. name: String!
  3532. description: String!
  3533. images: FileCreateManyInput
  3534. comments: CommentCreateManyInput
  3535. setupHardware: SetupHardwareInstanceCreateManyInput
  3536. instruments: InstrumentInstanceCreateManyInput
  3537. }
  3538. input SetupCreateOneInput {
  3539. create: SetupCreateInput
  3540. connect: SetupWhereUniqueInput
  3541. }
  3542. type SetupEdge {
  3543. node: Setup!
  3544. cursor: String!
  3545. }
  3546. type SetupHardware {
  3547. id: ID!
  3548. name: String!
  3549. description: String
  3550. images(where: FileWhereInput, orderBy: FileOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [File!]
  3551. }
  3552. type SetupHardwareConnection {
  3553. pageInfo: PageInfo!
  3554. edges: [SetupHardwareEdge]!
  3555. aggregate: AggregateSetupHardware!
  3556. }
  3557. input SetupHardwareCreateInput {
  3558. name: String!
  3559. description: String
  3560. images: FileCreateManyInput
  3561. }
  3562. input SetupHardwareCreateOneInput {
  3563. create: SetupHardwareCreateInput
  3564. connect: SetupHardwareWhereUniqueInput
  3565. }
  3566. type SetupHardwareEdge {
  3567. node: SetupHardware!
  3568. cursor: String!
  3569. }
  3570. type SetupHardwareInstance {
  3571. id: ID!
  3572. setupHardware: SetupHardware!
  3573. identifier: String!
  3574. images(where: FileWhereInput, orderBy: FileOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [File!]
  3575. }
  3576. type SetupHardwareInstanceConnection {
  3577. pageInfo: PageInfo!
  3578. edges: [SetupHardwareInstanceEdge]!
  3579. aggregate: AggregateSetupHardwareInstance!
  3580. }
  3581. input SetupHardwareInstanceCreateInput {
  3582. setupHardware: SetupHardwareCreateOneInput!
  3583. identifier: String!
  3584. images: FileCreateManyInput
  3585. }
  3586. input SetupHardwareInstanceCreateManyInput {
  3587. create: [SetupHardwareInstanceCreateInput!]
  3588. connect: [SetupHardwareInstanceWhereUniqueInput!]
  3589. }
  3590. type SetupHardwareInstanceEdge {
  3591. node: SetupHardwareInstance!
  3592. cursor: String!
  3593. }
  3594. enum SetupHardwareInstanceOrderByInput {
  3595. id_ASC
  3596. id_DESC
  3597. identifier_ASC
  3598. identifier_DESC
  3599. createdAt_ASC
  3600. createdAt_DESC
  3601. updatedAt_ASC
  3602. updatedAt_DESC
  3603. }
  3604. type SetupHardwareInstancePreviousValues {
  3605. id: ID!
  3606. identifier: String!
  3607. }
  3608. input SetupHardwareInstanceScalarWhereInput {
  3609. id: ID
  3610. id_not: ID
  3611. id_in: [ID!]
  3612. id_not_in: [ID!]
  3613. id_lt: ID
  3614. id_lte: ID
  3615. id_gt: ID
  3616. id_gte: ID
  3617. id_contains: ID
  3618. id_not_contains: ID
  3619. id_starts_with: ID
  3620. id_not_starts_with: ID
  3621. id_ends_with: ID
  3622. id_not_ends_with: ID
  3623. identifier: String
  3624. identifier_not: String
  3625. identifier_in: [String!]
  3626. identifier_not_in: [String!]
  3627. identifier_lt: String
  3628. identifier_lte: String
  3629. identifier_gt: String
  3630. identifier_gte: String
  3631. identifier_contains: String
  3632. identifier_not_contains: String
  3633. identifier_starts_with: String
  3634. identifier_not_starts_with: String
  3635. identifier_ends_with: String
  3636. identifier_not_ends_with: String
  3637. AND: [SetupHardwareInstanceScalarWhereInput!]
  3638. OR: [SetupHardwareInstanceScalarWhereInput!]
  3639. NOT: [SetupHardwareInstanceScalarWhereInput!]
  3640. }
  3641. type SetupHardwareInstanceSubscriptionPayload {
  3642. mutation: MutationType!
  3643. node: SetupHardwareInstance
  3644. updatedFields: [String!]
  3645. previousValues: SetupHardwareInstancePreviousValues
  3646. }
  3647. input SetupHardwareInstanceSubscriptionWhereInput {
  3648. mutation_in: [MutationType!]
  3649. updatedFields_contains: String
  3650. updatedFields_contains_every: [String!]
  3651. updatedFields_contains_some: [String!]
  3652. node: SetupHardwareInstanceWhereInput
  3653. AND: [SetupHardwareInstanceSubscriptionWhereInput!]
  3654. OR: [SetupHardwareInstanceSubscriptionWhereInput!]
  3655. NOT: [SetupHardwareInstanceSubscriptionWhereInput!]
  3656. }
  3657. input SetupHardwareInstanceUpdateDataInput {
  3658. setupHardware: SetupHardwareUpdateOneRequiredInput
  3659. identifier: String
  3660. images: FileUpdateManyInput
  3661. }
  3662. input SetupHardwareInstanceUpdateInput {
  3663. setupHardware: SetupHardwareUpdateOneRequiredInput
  3664. identifier: String
  3665. images: FileUpdateManyInput
  3666. }
  3667. input SetupHardwareInstanceUpdateManyDataInput {
  3668. identifier: String
  3669. }
  3670. input SetupHardwareInstanceUpdateManyInput {
  3671. create: [SetupHardwareInstanceCreateInput!]
  3672. update: [SetupHardwareInstanceUpdateWithWhereUniqueNestedInput!]
  3673. upsert: [SetupHardwareInstanceUpsertWithWhereUniqueNestedInput!]
  3674. delete: [SetupHardwareInstanceWhereUniqueInput!]
  3675. connect: [SetupHardwareInstanceWhereUniqueInput!]
  3676. set: [SetupHardwareInstanceWhereUniqueInput!]
  3677. disconnect: [SetupHardwareInstanceWhereUniqueInput!]
  3678. deleteMany: [SetupHardwareInstanceScalarWhereInput!]
  3679. updateMany: [SetupHardwareInstanceUpdateManyWithWhereNestedInput!]
  3680. }
  3681. input SetupHardwareInstanceUpdateManyMutationInput {
  3682. identifier: String
  3683. }
  3684. input SetupHardwareInstanceUpdateManyWithWhereNestedInput {
  3685. where: SetupHardwareInstanceScalarWhereInput!
  3686. data: SetupHardwareInstanceUpdateManyDataInput!
  3687. }
  3688. input SetupHardwareInstanceUpdateWithWhereUniqueNestedInput {
  3689. where: SetupHardwareInstanceWhereUniqueInput!
  3690. data: SetupHardwareInstanceUpdateDataInput!
  3691. }
  3692. input SetupHardwareInstanceUpsertWithWhereUniqueNestedInput {
  3693. where: SetupHardwareInstanceWhereUniqueInput!
  3694. update: SetupHardwareInstanceUpdateDataInput!
  3695. create: SetupHardwareInstanceCreateInput!
  3696. }
  3697. input SetupHardwareInstanceWhereInput {
  3698. id: ID
  3699. id_not: ID
  3700. id_in: [ID!]
  3701. id_not_in: [ID!]
  3702. id_lt: ID
  3703. id_lte: ID
  3704. id_gt: ID
  3705. id_gte: ID
  3706. id_contains: ID
  3707. id_not_contains: ID
  3708. id_starts_with: ID
  3709. id_not_starts_with: ID
  3710. id_ends_with: ID
  3711. id_not_ends_with: ID
  3712. setupHardware: SetupHardwareWhereInput
  3713. identifier: String
  3714. identifier_not: String
  3715. identifier_in: [String!]
  3716. identifier_not_in: [String!]
  3717. identifier_lt: String
  3718. identifier_lte: String
  3719. identifier_gt: String
  3720. identifier_gte: String
  3721. identifier_contains: String
  3722. identifier_not_contains: String
  3723. identifier_starts_with: String
  3724. identifier_not_starts_with: String
  3725. identifier_ends_with: String
  3726. identifier_not_ends_with: String
  3727. images_every: FileWhereInput
  3728. images_some: FileWhereInput
  3729. images_none: FileWhereInput
  3730. AND: [SetupHardwareInstanceWhereInput!]
  3731. OR: [SetupHardwareInstanceWhereInput!]
  3732. NOT: [SetupHardwareInstanceWhereInput!]
  3733. }
  3734. input SetupHardwareInstanceWhereUniqueInput {
  3735. id: ID
  3736. }
  3737. enum SetupHardwareOrderByInput {
  3738. id_ASC
  3739. id_DESC
  3740. name_ASC
  3741. name_DESC
  3742. description_ASC
  3743. description_DESC
  3744. createdAt_ASC
  3745. createdAt_DESC
  3746. updatedAt_ASC
  3747. updatedAt_DESC
  3748. }
  3749. type SetupHardwarePreviousValues {
  3750. id: ID!
  3751. name: String!
  3752. description: String
  3753. }
  3754. type SetupHardwareSubscriptionPayload {
  3755. mutation: MutationType!
  3756. node: SetupHardware
  3757. updatedFields: [String!]
  3758. previousValues: SetupHardwarePreviousValues
  3759. }
  3760. input SetupHardwareSubscriptionWhereInput {
  3761. mutation_in: [MutationType!]
  3762. updatedFields_contains: String
  3763. updatedFields_contains_every: [String!]
  3764. updatedFields_contains_some: [String!]
  3765. node: SetupHardwareWhereInput
  3766. AND: [SetupHardwareSubscriptionWhereInput!]
  3767. OR: [SetupHardwareSubscriptionWhereInput!]
  3768. NOT: [SetupHardwareSubscriptionWhereInput!]
  3769. }
  3770. input SetupHardwareUpdateDataInput {
  3771. name: String
  3772. description: String
  3773. images: FileUpdateManyInput
  3774. }
  3775. input SetupHardwareUpdateInput {
  3776. name: String
  3777. description: String
  3778. images: FileUpdateManyInput
  3779. }
  3780. input SetupHardwareUpdateManyMutationInput {
  3781. name: String
  3782. description: String
  3783. }
  3784. input SetupHardwareUpdateOneRequiredInput {
  3785. create: SetupHardwareCreateInput
  3786. update: SetupHardwareUpdateDataInput
  3787. upsert: SetupHardwareUpsertNestedInput
  3788. connect: SetupHardwareWhereUniqueInput
  3789. }
  3790. input SetupHardwareUpsertNestedInput {
  3791. update: SetupHardwareUpdateDataInput!
  3792. create: SetupHardwareCreateInput!
  3793. }
  3794. input SetupHardwareWhereInput {
  3795. id: ID
  3796. id_not: ID
  3797. id_in: [ID!]
  3798. id_not_in: [ID!]
  3799. id_lt: ID
  3800. id_lte: ID
  3801. id_gt: ID
  3802. id_gte: ID
  3803. id_contains: ID
  3804. id_not_contains: ID
  3805. id_starts_with: ID
  3806. id_not_starts_with: ID
  3807. id_ends_with: ID
  3808. id_not_ends_with: ID
  3809. name: String
  3810. name_not: String
  3811. name_in: [String!]
  3812. name_not_in: [String!]
  3813. name_lt: String
  3814. name_lte: String
  3815. name_gt: String
  3816. name_gte: String
  3817. name_contains: String
  3818. name_not_contains: String
  3819. name_starts_with: String
  3820. name_not_starts_with: String
  3821. name_ends_with: String
  3822. name_not_ends_with: String
  3823. description: String
  3824. description_not: String
  3825. description_in: [String!]
  3826. description_not_in: [String!]
  3827. description_lt: String
  3828. description_lte: String
  3829. description_gt: String
  3830. description_gte: String
  3831. description_contains: String
  3832. description_not_contains: String
  3833. description_starts_with: String
  3834. description_not_starts_with: String
  3835. description_ends_with: String
  3836. description_not_ends_with: String
  3837. images_every: FileWhereInput
  3838. images_some: FileWhereInput
  3839. images_none: FileWhereInput
  3840. AND: [SetupHardwareWhereInput!]
  3841. OR: [SetupHardwareWhereInput!]
  3842. NOT: [SetupHardwareWhereInput!]
  3843. }
  3844. input SetupHardwareWhereUniqueInput {
  3845. id: ID
  3846. }
  3847. enum SetupOrderByInput {
  3848. id_ASC
  3849. id_DESC
  3850. name_ASC
  3851. name_DESC
  3852. description_ASC
  3853. description_DESC
  3854. createdAt_ASC
  3855. createdAt_DESC
  3856. updatedAt_ASC
  3857. updatedAt_DESC
  3858. }
  3859. type SetupPreviousValues {
  3860. id: ID!
  3861. name: String!
  3862. description: String!
  3863. }
  3864. type SetupSubscriptionPayload {
  3865. mutation: MutationType!
  3866. node: Setup
  3867. updatedFields: [String!]
  3868. previousValues: SetupPreviousValues
  3869. }
  3870. input SetupSubscriptionWhereInput {
  3871. mutation_in: [MutationType!]
  3872. updatedFields_contains: String
  3873. updatedFields_contains_every: [String!]
  3874. updatedFields_contains_some: [String!]
  3875. node: SetupWhereInput
  3876. AND: [SetupSubscriptionWhereInput!]
  3877. OR: [SetupSubscriptionWhereInput!]
  3878. NOT: [SetupSubscriptionWhereInput!]
  3879. }
  3880. input SetupUpdateDataInput {
  3881. name: String
  3882. description: String
  3883. images: FileUpdateManyInput
  3884. comments: CommentUpdateManyInput
  3885. setupHardware: SetupHardwareInstanceUpdateManyInput
  3886. instruments: InstrumentInstanceUpdateManyInput
  3887. }
  3888. input SetupUpdateInput {
  3889. name: String
  3890. description: String
  3891. images: FileUpdateManyInput
  3892. comments: CommentUpdateManyInput
  3893. setupHardware: SetupHardwareInstanceUpdateManyInput
  3894. instruments: InstrumentInstanceUpdateManyInput
  3895. }
  3896. input SetupUpdateManyMutationInput {
  3897. name: String
  3898. description: String
  3899. }
  3900. input SetupUpdateOneRequiredInput {
  3901. create: SetupCreateInput
  3902. update: SetupUpdateDataInput
  3903. upsert: SetupUpsertNestedInput
  3904. connect: SetupWhereUniqueInput
  3905. }
  3906. input SetupUpsertNestedInput {
  3907. update: SetupUpdateDataInput!
  3908. create: SetupCreateInput!
  3909. }
  3910. input SetupWhereInput {
  3911. id: ID
  3912. id_not: ID
  3913. id_in: [ID!]
  3914. id_not_in: [ID!]
  3915. id_lt: ID
  3916. id_lte: ID
  3917. id_gt: ID
  3918. id_gte: ID
  3919. id_contains: ID
  3920. id_not_contains: ID
  3921. id_starts_with: ID
  3922. id_not_starts_with: ID
  3923. id_ends_with: ID
  3924. id_not_ends_with: ID
  3925. name: String
  3926. name_not: String
  3927. name_in: [String!]
  3928. name_not_in: [String!]
  3929. name_lt: String
  3930. name_lte: String
  3931. name_gt: String
  3932. name_gte: String
  3933. name_contains: String
  3934. name_not_contains: String
  3935. name_starts_with: String
  3936. name_not_starts_with: String
  3937. name_ends_with: String
  3938. name_not_ends_with: String
  3939. description: String
  3940. description_not: String
  3941. description_in: [String!]
  3942. description_not_in: [String!]
  3943. description_lt: String
  3944. description_lte: String
  3945. description_gt: String
  3946. description_gte: String
  3947. description_contains: String
  3948. description_not_contains: String
  3949. description_starts_with: String
  3950. description_not_starts_with: String
  3951. description_ends_with: String
  3952. description_not_ends_with: String
  3953. images_every: FileWhereInput
  3954. images_some: FileWhereInput
  3955. images_none: FileWhereInput
  3956. comments_every: CommentWhereInput
  3957. comments_some: CommentWhereInput
  3958. comments_none: CommentWhereInput
  3959. setupHardware_every: SetupHardwareInstanceWhereInput
  3960. setupHardware_some: SetupHardwareInstanceWhereInput
  3961. setupHardware_none: SetupHardwareInstanceWhereInput
  3962. instruments_every: InstrumentInstanceWhereInput
  3963. instruments_some: InstrumentInstanceWhereInput
  3964. instruments_none: InstrumentInstanceWhereInput
  3965. AND: [SetupWhereInput!]
  3966. OR: [SetupWhereInput!]
  3967. NOT: [SetupWhereInput!]
  3968. }
  3969. input SetupWhereUniqueInput {
  3970. id: ID
  3971. }
  3972. type Subscription {
  3973. characterization(where: CharacterizationSubscriptionWhereInput): CharacterizationSubscriptionPayload
  3974. comment(where: CommentSubscriptionWhereInput): CommentSubscriptionPayload
  3975. dUT(where: DUTSubscriptionWhereInput): DUTSubscriptionPayload
  3976. event(where: EventSubscriptionWhereInput): EventSubscriptionPayload
  3977. file(where: FileSubscriptionWhereInput): FileSubscriptionPayload
  3978. instrument(where: InstrumentSubscriptionWhereInput): InstrumentSubscriptionPayload
  3979. instrumentCommand(where: InstrumentCommandSubscriptionWhereInput): InstrumentCommandSubscriptionPayload
  3980. instrumentInstance(where: InstrumentInstanceSubscriptionWhereInput): InstrumentInstanceSubscriptionPayload
  3981. instrumentParameter(where: InstrumentParameterSubscriptionWhereInput): InstrumentParameterSubscriptionPayload
  3982. measurement(where: MeasurementSubscriptionWhereInput): MeasurementSubscriptionPayload
  3983. measurementRun(where: MeasurementRunSubscriptionWhereInput): MeasurementRunSubscriptionPayload
  3984. meta(where: MetaSubscriptionWhereInput): MetaSubscriptionPayload
  3985. project(where: ProjectSubscriptionWhereInput): ProjectSubscriptionPayload
  3986. projectVersion(where: ProjectVersionSubscriptionWhereInput): ProjectVersionSubscriptionPayload
  3987. setup(where: SetupSubscriptionWhereInput): SetupSubscriptionPayload
  3988. setupHardware(where: SetupHardwareSubscriptionWhereInput): SetupHardwareSubscriptionPayload
  3989. setupHardwareInstance(where: SetupHardwareInstanceSubscriptionWhereInput): SetupHardwareInstanceSubscriptionPayload
  3990. user(where: UserSubscriptionWhereInput): UserSubscriptionPayload
  3991. }
  3992. type User {
  3993. id: ID!
  3994. email: String!
  3995. name: String!
  3996. abbreviation: String!
  3997. password: String!
  3998. images(where: FileWhereInput, orderBy: FileOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [File!]
  3999. comments(where: CommentWhereInput, orderBy: CommentOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Comment!]
  4000. }
  4001. type UserConnection {
  4002. pageInfo: PageInfo!
  4003. edges: [UserEdge]!
  4004. aggregate: AggregateUser!
  4005. }
  4006. input UserCreateInput {
  4007. email: String!
  4008. name: String!
  4009. abbreviation: String!
  4010. password: String!
  4011. images: FileCreateManyInput
  4012. comments: CommentCreateManyWithoutAuthorInput
  4013. }
  4014. input UserCreateManyInput {
  4015. create: [UserCreateInput!]
  4016. connect: [UserWhereUniqueInput!]
  4017. }
  4018. input UserCreateOneWithoutCommentsInput {
  4019. create: UserCreateWithoutCommentsInput
  4020. connect: UserWhereUniqueInput
  4021. }
  4022. input UserCreateWithoutCommentsInput {
  4023. email: String!
  4024. name: String!
  4025. abbreviation: String!
  4026. password: String!
  4027. images: FileCreateManyInput
  4028. }
  4029. type UserEdge {
  4030. node: User!
  4031. cursor: String!
  4032. }
  4033. enum UserOrderByInput {
  4034. id_ASC
  4035. id_DESC
  4036. email_ASC
  4037. email_DESC
  4038. name_ASC
  4039. name_DESC
  4040. abbreviation_ASC
  4041. abbreviation_DESC
  4042. password_ASC
  4043. password_DESC
  4044. createdAt_ASC
  4045. createdAt_DESC
  4046. updatedAt_ASC
  4047. updatedAt_DESC
  4048. }
  4049. type UserPreviousValues {
  4050. id: ID!
  4051. email: String!
  4052. name: String!
  4053. abbreviation: String!
  4054. password: String!
  4055. }
  4056. input UserScalarWhereInput {
  4057. id: ID
  4058. id_not: ID
  4059. id_in: [ID!]
  4060. id_not_in: [ID!]
  4061. id_lt: ID
  4062. id_lte: ID
  4063. id_gt: ID
  4064. id_gte: ID
  4065. id_contains: ID
  4066. id_not_contains: ID
  4067. id_starts_with: ID
  4068. id_not_starts_with: ID
  4069. id_ends_with: ID
  4070. id_not_ends_with: ID
  4071. email: String
  4072. email_not: String
  4073. email_in: [String!]
  4074. email_not_in: [String!]
  4075. email_lt: String
  4076. email_lte: String
  4077. email_gt: String
  4078. email_gte: String
  4079. email_contains: String
  4080. email_not_contains: String
  4081. email_starts_with: String
  4082. email_not_starts_with: String
  4083. email_ends_with: String
  4084. email_not_ends_with: String
  4085. name: String
  4086. name_not: String
  4087. name_in: [String!]
  4088. name_not_in: [String!]
  4089. name_lt: String
  4090. name_lte: String
  4091. name_gt: String
  4092. name_gte: String
  4093. name_contains: String
  4094. name_not_contains: String
  4095. name_starts_with: String
  4096. name_not_starts_with: String
  4097. name_ends_with: String
  4098. name_not_ends_with: String
  4099. abbreviation: String
  4100. abbreviation_not: String
  4101. abbreviation_in: [String!]
  4102. abbreviation_not_in: [String!]
  4103. abbreviation_lt: String
  4104. abbreviation_lte: String
  4105. abbreviation_gt: String
  4106. abbreviation_gte: String
  4107. abbreviation_contains: String
  4108. abbreviation_not_contains: String
  4109. abbreviation_starts_with: String
  4110. abbreviation_not_starts_with: String
  4111. abbreviation_ends_with: String
  4112. abbreviation_not_ends_with: String
  4113. password: String
  4114. password_not: String
  4115. password_in: [String!]
  4116. password_not_in: [String!]
  4117. password_lt: String
  4118. password_lte: String
  4119. password_gt: String
  4120. password_gte: String
  4121. password_contains: String
  4122. password_not_contains: String
  4123. password_starts_with: String
  4124. password_not_starts_with: String
  4125. password_ends_with: String
  4126. password_not_ends_with: String
  4127. AND: [UserScalarWhereInput!]
  4128. OR: [UserScalarWhereInput!]
  4129. NOT: [UserScalarWhereInput!]
  4130. }
  4131. type UserSubscriptionPayload {
  4132. mutation: MutationType!
  4133. node: User
  4134. updatedFields: [String!]
  4135. previousValues: UserPreviousValues
  4136. }
  4137. input UserSubscriptionWhereInput {
  4138. mutation_in: [MutationType!]
  4139. updatedFields_contains: String
  4140. updatedFields_contains_every: [String!]
  4141. updatedFields_contains_some: [String!]
  4142. node: UserWhereInput
  4143. AND: [UserSubscriptionWhereInput!]
  4144. OR: [UserSubscriptionWhereInput!]
  4145. NOT: [UserSubscriptionWhereInput!]
  4146. }
  4147. input UserUpdateDataInput {
  4148. email: String
  4149. name: String
  4150. abbreviation: String
  4151. password: String
  4152. images: FileUpdateManyInput
  4153. comments: CommentUpdateManyWithoutAuthorInput
  4154. }
  4155. input UserUpdateInput {
  4156. email: String
  4157. name: String
  4158. abbreviation: String
  4159. password: String
  4160. images: FileUpdateManyInput
  4161. comments: CommentUpdateManyWithoutAuthorInput
  4162. }
  4163. input UserUpdateManyDataInput {
  4164. email: String
  4165. name: String
  4166. abbreviation: String
  4167. password: String
  4168. }
  4169. input UserUpdateManyInput {
  4170. create: [UserCreateInput!]
  4171. update: [UserUpdateWithWhereUniqueNestedInput!]
  4172. upsert: [UserUpsertWithWhereUniqueNestedInput!]
  4173. delete: [UserWhereUniqueInput!]
  4174. connect: [UserWhereUniqueInput!]
  4175. set: [UserWhereUniqueInput!]
  4176. disconnect: [UserWhereUniqueInput!]
  4177. deleteMany: [UserScalarWhereInput!]
  4178. updateMany: [UserUpdateManyWithWhereNestedInput!]
  4179. }
  4180. input UserUpdateManyMutationInput {
  4181. email: String
  4182. name: String
  4183. abbreviation: String
  4184. password: String
  4185. }
  4186. input UserUpdateManyWithWhereNestedInput {
  4187. where: UserScalarWhereInput!
  4188. data: UserUpdateManyDataInput!
  4189. }
  4190. input UserUpdateOneRequiredWithoutCommentsInput {
  4191. create: UserCreateWithoutCommentsInput
  4192. update: UserUpdateWithoutCommentsDataInput
  4193. upsert: UserUpsertWithoutCommentsInput
  4194. connect: UserWhereUniqueInput
  4195. }
  4196. input UserUpdateWithoutCommentsDataInput {
  4197. email: String
  4198. name: String
  4199. abbreviation: String
  4200. password: String
  4201. images: FileUpdateManyInput
  4202. }
  4203. input UserUpdateWithWhereUniqueNestedInput {
  4204. where: UserWhereUniqueInput!
  4205. data: UserUpdateDataInput!
  4206. }
  4207. input UserUpsertWithoutCommentsInput {
  4208. update: UserUpdateWithoutCommentsDataInput!
  4209. create: UserCreateWithoutCommentsInput!
  4210. }
  4211. input UserUpsertWithWhereUniqueNestedInput {
  4212. where: UserWhereUniqueInput!
  4213. update: UserUpdateDataInput!
  4214. create: UserCreateInput!
  4215. }
  4216. input UserWhereInput {
  4217. id: ID
  4218. id_not: ID
  4219. id_in: [ID!]
  4220. id_not_in: [ID!]
  4221. id_lt: ID
  4222. id_lte: ID
  4223. id_gt: ID
  4224. id_gte: ID
  4225. id_contains: ID
  4226. id_not_contains: ID
  4227. id_starts_with: ID
  4228. id_not_starts_with: ID
  4229. id_ends_with: ID
  4230. id_not_ends_with: ID
  4231. email: String
  4232. email_not: String
  4233. email_in: [String!]
  4234. email_not_in: [String!]
  4235. email_lt: String
  4236. email_lte: String
  4237. email_gt: String
  4238. email_gte: String
  4239. email_contains: String
  4240. email_not_contains: String
  4241. email_starts_with: String
  4242. email_not_starts_with: String
  4243. email_ends_with: String
  4244. email_not_ends_with: String
  4245. name: String
  4246. name_not: String
  4247. name_in: [String!]
  4248. name_not_in: [String!]
  4249. name_lt: String
  4250. name_lte: String
  4251. name_gt: String
  4252. name_gte: String
  4253. name_contains: String
  4254. name_not_contains: String
  4255. name_starts_with: String
  4256. name_not_starts_with: String
  4257. name_ends_with: String
  4258. name_not_ends_with: String
  4259. abbreviation: String
  4260. abbreviation_not: String
  4261. abbreviation_in: [String!]
  4262. abbreviation_not_in: [String!]
  4263. abbreviation_lt: String
  4264. abbreviation_lte: String
  4265. abbreviation_gt: String
  4266. abbreviation_gte: String
  4267. abbreviation_contains: String
  4268. abbreviation_not_contains: String
  4269. abbreviation_starts_with: String
  4270. abbreviation_not_starts_with: String
  4271. abbreviation_ends_with: String
  4272. abbreviation_not_ends_with: String
  4273. password: String
  4274. password_not: String
  4275. password_in: [String!]
  4276. password_not_in: [String!]
  4277. password_lt: String
  4278. password_lte: String
  4279. password_gt: String
  4280. password_gte: String
  4281. password_contains: String
  4282. password_not_contains: String
  4283. password_starts_with: String
  4284. password_not_starts_with: String
  4285. password_ends_with: String
  4286. password_not_ends_with: String
  4287. images_every: FileWhereInput
  4288. images_some: FileWhereInput
  4289. images_none: FileWhereInput
  4290. comments_every: CommentWhereInput
  4291. comments_some: CommentWhereInput
  4292. comments_none: CommentWhereInput
  4293. AND: [UserWhereInput!]
  4294. OR: [UserWhereInput!]
  4295. NOT: [UserWhereInput!]
  4296. }
  4297. input UserWhereUniqueInput {
  4298. id: ID
  4299. email: String
  4300. }
  4301. `
  4302. }