prisma-schema.js 121 KB

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