1
0

schema.json 129 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824
  1. {
  2. "__schema": {
  3. "queryType": {
  4. "name": "Query"
  5. },
  6. "mutationType": {
  7. "name": "Mutation"
  8. },
  9. "subscriptionType": null,
  10. "types": [
  11. {
  12. "kind": "OBJECT",
  13. "name": "Query",
  14. "description": "",
  15. "fields": [
  16. {
  17. "name": "network",
  18. "description": "",
  19. "args": [],
  20. "type": {
  21. "kind": "OBJECT",
  22. "name": "Network",
  23. "ofType": null
  24. },
  25. "isDeprecated": false,
  26. "deprecationReason": null
  27. },
  28. {
  29. "name": "administrators",
  30. "description": "",
  31. "args": [],
  32. "type": {
  33. "kind": "LIST",
  34. "name": null,
  35. "ofType": {
  36. "kind": "OBJECT",
  37. "name": "Administrator",
  38. "ofType": null
  39. }
  40. },
  41. "isDeprecated": false,
  42. "deprecationReason": null
  43. },
  44. {
  45. "name": "administrator",
  46. "description": "",
  47. "args": [
  48. {
  49. "name": "id",
  50. "description": "",
  51. "type": {
  52. "kind": "NON_NULL",
  53. "name": null,
  54. "ofType": {
  55. "kind": "SCALAR",
  56. "name": "ID",
  57. "ofType": null
  58. }
  59. },
  60. "defaultValue": null
  61. }
  62. ],
  63. "type": {
  64. "kind": "OBJECT",
  65. "name": "Administrator",
  66. "ofType": null
  67. },
  68. "isDeprecated": false,
  69. "deprecationReason": null
  70. },
  71. {
  72. "name": "customers",
  73. "description": "",
  74. "args": [
  75. {
  76. "name": "take",
  77. "description": "",
  78. "type": {
  79. "kind": "SCALAR",
  80. "name": "Int",
  81. "ofType": null
  82. },
  83. "defaultValue": null
  84. },
  85. {
  86. "name": "skip",
  87. "description": "",
  88. "type": {
  89. "kind": "SCALAR",
  90. "name": "Int",
  91. "ofType": null
  92. },
  93. "defaultValue": null
  94. }
  95. ],
  96. "type": {
  97. "kind": "OBJECT",
  98. "name": "CustomerList",
  99. "ofType": null
  100. },
  101. "isDeprecated": false,
  102. "deprecationReason": null
  103. },
  104. {
  105. "name": "customer",
  106. "description": "",
  107. "args": [
  108. {
  109. "name": "id",
  110. "description": "",
  111. "type": {
  112. "kind": "NON_NULL",
  113. "name": null,
  114. "ofType": {
  115. "kind": "SCALAR",
  116. "name": "ID",
  117. "ofType": null
  118. }
  119. },
  120. "defaultValue": null
  121. }
  122. ],
  123. "type": {
  124. "kind": "OBJECT",
  125. "name": "Customer",
  126. "ofType": null
  127. },
  128. "isDeprecated": false,
  129. "deprecationReason": null
  130. },
  131. {
  132. "name": "productOptionGroups",
  133. "description": "",
  134. "args": [
  135. {
  136. "name": "languageCode",
  137. "description": "",
  138. "type": {
  139. "kind": "ENUM",
  140. "name": "LanguageCode",
  141. "ofType": null
  142. },
  143. "defaultValue": null
  144. }
  145. ],
  146. "type": {
  147. "kind": "LIST",
  148. "name": null,
  149. "ofType": {
  150. "kind": "OBJECT",
  151. "name": "ProductOptionGroup",
  152. "ofType": null
  153. }
  154. },
  155. "isDeprecated": false,
  156. "deprecationReason": null
  157. },
  158. {
  159. "name": "productOptionGroup",
  160. "description": "",
  161. "args": [
  162. {
  163. "name": "id",
  164. "description": "",
  165. "type": {
  166. "kind": "NON_NULL",
  167. "name": null,
  168. "ofType": {
  169. "kind": "SCALAR",
  170. "name": "ID",
  171. "ofType": null
  172. }
  173. },
  174. "defaultValue": null
  175. },
  176. {
  177. "name": "languageCode",
  178. "description": "",
  179. "type": {
  180. "kind": "ENUM",
  181. "name": "LanguageCode",
  182. "ofType": null
  183. },
  184. "defaultValue": null
  185. }
  186. ],
  187. "type": {
  188. "kind": "OBJECT",
  189. "name": "ProductOptionGroup",
  190. "ofType": null
  191. },
  192. "isDeprecated": false,
  193. "deprecationReason": null
  194. },
  195. {
  196. "name": "products",
  197. "description": "",
  198. "args": [
  199. {
  200. "name": "languageCode",
  201. "description": "",
  202. "type": {
  203. "kind": "ENUM",
  204. "name": "LanguageCode",
  205. "ofType": null
  206. },
  207. "defaultValue": null
  208. },
  209. {
  210. "name": "take",
  211. "description": "",
  212. "type": {
  213. "kind": "SCALAR",
  214. "name": "Int",
  215. "ofType": null
  216. },
  217. "defaultValue": null
  218. },
  219. {
  220. "name": "skip",
  221. "description": "",
  222. "type": {
  223. "kind": "SCALAR",
  224. "name": "Int",
  225. "ofType": null
  226. },
  227. "defaultValue": null
  228. }
  229. ],
  230. "type": {
  231. "kind": "OBJECT",
  232. "name": "ProductList",
  233. "ofType": null
  234. },
  235. "isDeprecated": false,
  236. "deprecationReason": null
  237. },
  238. {
  239. "name": "product",
  240. "description": "",
  241. "args": [
  242. {
  243. "name": "id",
  244. "description": "",
  245. "type": {
  246. "kind": "NON_NULL",
  247. "name": null,
  248. "ofType": {
  249. "kind": "SCALAR",
  250. "name": "ID",
  251. "ofType": null
  252. }
  253. },
  254. "defaultValue": null
  255. },
  256. {
  257. "name": "languageCode",
  258. "description": "",
  259. "type": {
  260. "kind": "ENUM",
  261. "name": "LanguageCode",
  262. "ofType": null
  263. },
  264. "defaultValue": null
  265. }
  266. ],
  267. "type": {
  268. "kind": "OBJECT",
  269. "name": "Product",
  270. "ofType": null
  271. },
  272. "isDeprecated": false,
  273. "deprecationReason": null
  274. }
  275. ],
  276. "inputFields": null,
  277. "interfaces": [],
  278. "enumValues": null,
  279. "possibleTypes": null
  280. },
  281. {
  282. "kind": "OBJECT",
  283. "name": "Network",
  284. "description": "",
  285. "fields": [
  286. {
  287. "name": "inFlightRequests",
  288. "description": "",
  289. "args": [],
  290. "type": {
  291. "kind": "NON_NULL",
  292. "name": null,
  293. "ofType": {
  294. "kind": "SCALAR",
  295. "name": "Int",
  296. "ofType": null
  297. }
  298. },
  299. "isDeprecated": false,
  300. "deprecationReason": null
  301. }
  302. ],
  303. "inputFields": null,
  304. "interfaces": [],
  305. "enumValues": null,
  306. "possibleTypes": null
  307. },
  308. {
  309. "kind": "SCALAR",
  310. "name": "Int",
  311. "description": "The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1. ",
  312. "fields": null,
  313. "inputFields": null,
  314. "interfaces": null,
  315. "enumValues": null,
  316. "possibleTypes": null
  317. },
  318. {
  319. "kind": "OBJECT",
  320. "name": "Administrator",
  321. "description": "",
  322. "fields": [
  323. {
  324. "name": "id",
  325. "description": "",
  326. "args": [],
  327. "type": {
  328. "kind": "NON_NULL",
  329. "name": null,
  330. "ofType": {
  331. "kind": "SCALAR",
  332. "name": "ID",
  333. "ofType": null
  334. }
  335. },
  336. "isDeprecated": false,
  337. "deprecationReason": null
  338. },
  339. {
  340. "name": "firstName",
  341. "description": "",
  342. "args": [],
  343. "type": {
  344. "kind": "SCALAR",
  345. "name": "String",
  346. "ofType": null
  347. },
  348. "isDeprecated": false,
  349. "deprecationReason": null
  350. },
  351. {
  352. "name": "lastName",
  353. "description": "",
  354. "args": [],
  355. "type": {
  356. "kind": "SCALAR",
  357. "name": "String",
  358. "ofType": null
  359. },
  360. "isDeprecated": false,
  361. "deprecationReason": null
  362. },
  363. {
  364. "name": "emailAddress",
  365. "description": "",
  366. "args": [],
  367. "type": {
  368. "kind": "SCALAR",
  369. "name": "String",
  370. "ofType": null
  371. },
  372. "isDeprecated": false,
  373. "deprecationReason": null
  374. },
  375. {
  376. "name": "user",
  377. "description": "",
  378. "args": [],
  379. "type": {
  380. "kind": "OBJECT",
  381. "name": "User",
  382. "ofType": null
  383. },
  384. "isDeprecated": false,
  385. "deprecationReason": null
  386. }
  387. ],
  388. "inputFields": null,
  389. "interfaces": [
  390. {
  391. "kind": "INTERFACE",
  392. "name": "Node",
  393. "ofType": null
  394. }
  395. ],
  396. "enumValues": null,
  397. "possibleTypes": null
  398. },
  399. {
  400. "kind": "INTERFACE",
  401. "name": "Node",
  402. "description": "",
  403. "fields": [
  404. {
  405. "name": "id",
  406. "description": "",
  407. "args": [],
  408. "type": {
  409. "kind": "NON_NULL",
  410. "name": null,
  411. "ofType": {
  412. "kind": "SCALAR",
  413. "name": "ID",
  414. "ofType": null
  415. }
  416. },
  417. "isDeprecated": false,
  418. "deprecationReason": null
  419. }
  420. ],
  421. "inputFields": null,
  422. "interfaces": null,
  423. "enumValues": null,
  424. "possibleTypes": [
  425. {
  426. "kind": "OBJECT",
  427. "name": "Administrator",
  428. "ofType": null
  429. },
  430. {
  431. "kind": "OBJECT",
  432. "name": "User",
  433. "ofType": null
  434. },
  435. {
  436. "kind": "OBJECT",
  437. "name": "Customer",
  438. "ofType": null
  439. },
  440. {
  441. "kind": "OBJECT",
  442. "name": "Address",
  443. "ofType": null
  444. },
  445. {
  446. "kind": "OBJECT",
  447. "name": "ProductOptionGroup",
  448. "ofType": null
  449. },
  450. {
  451. "kind": "OBJECT",
  452. "name": "ProductOption",
  453. "ofType": null
  454. },
  455. {
  456. "kind": "OBJECT",
  457. "name": "Product",
  458. "ofType": null
  459. },
  460. {
  461. "kind": "OBJECT",
  462. "name": "ProductVariant",
  463. "ofType": null
  464. }
  465. ]
  466. },
  467. {
  468. "kind": "SCALAR",
  469. "name": "ID",
  470. "description": "The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `\"4\"`) or integer (such as `4`) input value will be accepted as an ID.",
  471. "fields": null,
  472. "inputFields": null,
  473. "interfaces": null,
  474. "enumValues": null,
  475. "possibleTypes": null
  476. },
  477. {
  478. "kind": "SCALAR",
  479. "name": "String",
  480. "description": "The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.",
  481. "fields": null,
  482. "inputFields": null,
  483. "interfaces": null,
  484. "enumValues": null,
  485. "possibleTypes": null
  486. },
  487. {
  488. "kind": "OBJECT",
  489. "name": "User",
  490. "description": "",
  491. "fields": [
  492. {
  493. "name": "id",
  494. "description": "",
  495. "args": [],
  496. "type": {
  497. "kind": "NON_NULL",
  498. "name": null,
  499. "ofType": {
  500. "kind": "SCALAR",
  501. "name": "ID",
  502. "ofType": null
  503. }
  504. },
  505. "isDeprecated": false,
  506. "deprecationReason": null
  507. },
  508. {
  509. "name": "identifier",
  510. "description": "",
  511. "args": [],
  512. "type": {
  513. "kind": "SCALAR",
  514. "name": "String",
  515. "ofType": null
  516. },
  517. "isDeprecated": false,
  518. "deprecationReason": null
  519. },
  520. {
  521. "name": "passwordHash",
  522. "description": "",
  523. "args": [],
  524. "type": {
  525. "kind": "SCALAR",
  526. "name": "String",
  527. "ofType": null
  528. },
  529. "isDeprecated": false,
  530. "deprecationReason": null
  531. },
  532. {
  533. "name": "roles",
  534. "description": "",
  535. "args": [],
  536. "type": {
  537. "kind": "LIST",
  538. "name": null,
  539. "ofType": {
  540. "kind": "SCALAR",
  541. "name": "String",
  542. "ofType": null
  543. }
  544. },
  545. "isDeprecated": false,
  546. "deprecationReason": null
  547. },
  548. {
  549. "name": "lastLogin",
  550. "description": "",
  551. "args": [],
  552. "type": {
  553. "kind": "SCALAR",
  554. "name": "String",
  555. "ofType": null
  556. },
  557. "isDeprecated": false,
  558. "deprecationReason": null
  559. },
  560. {
  561. "name": "createdAt",
  562. "description": "",
  563. "args": [],
  564. "type": {
  565. "kind": "SCALAR",
  566. "name": "String",
  567. "ofType": null
  568. },
  569. "isDeprecated": false,
  570. "deprecationReason": null
  571. },
  572. {
  573. "name": "updatedAt",
  574. "description": "",
  575. "args": [],
  576. "type": {
  577. "kind": "SCALAR",
  578. "name": "String",
  579. "ofType": null
  580. },
  581. "isDeprecated": false,
  582. "deprecationReason": null
  583. }
  584. ],
  585. "inputFields": null,
  586. "interfaces": [
  587. {
  588. "kind": "INTERFACE",
  589. "name": "Node",
  590. "ofType": null
  591. }
  592. ],
  593. "enumValues": null,
  594. "possibleTypes": null
  595. },
  596. {
  597. "kind": "OBJECT",
  598. "name": "CustomerList",
  599. "description": "",
  600. "fields": [
  601. {
  602. "name": "items",
  603. "description": "",
  604. "args": [],
  605. "type": {
  606. "kind": "NON_NULL",
  607. "name": null,
  608. "ofType": {
  609. "kind": "LIST",
  610. "name": null,
  611. "ofType": {
  612. "kind": "NON_NULL",
  613. "name": null,
  614. "ofType": {
  615. "kind": "OBJECT",
  616. "name": "Customer",
  617. "ofType": null
  618. }
  619. }
  620. }
  621. },
  622. "isDeprecated": false,
  623. "deprecationReason": null
  624. },
  625. {
  626. "name": "totalItems",
  627. "description": "",
  628. "args": [],
  629. "type": {
  630. "kind": "NON_NULL",
  631. "name": null,
  632. "ofType": {
  633. "kind": "SCALAR",
  634. "name": "Int",
  635. "ofType": null
  636. }
  637. },
  638. "isDeprecated": false,
  639. "deprecationReason": null
  640. }
  641. ],
  642. "inputFields": null,
  643. "interfaces": [
  644. {
  645. "kind": "INTERFACE",
  646. "name": "PaginatedList",
  647. "ofType": null
  648. }
  649. ],
  650. "enumValues": null,
  651. "possibleTypes": null
  652. },
  653. {
  654. "kind": "INTERFACE",
  655. "name": "PaginatedList",
  656. "description": "",
  657. "fields": [
  658. {
  659. "name": "items",
  660. "description": "",
  661. "args": [],
  662. "type": {
  663. "kind": "NON_NULL",
  664. "name": null,
  665. "ofType": {
  666. "kind": "LIST",
  667. "name": null,
  668. "ofType": {
  669. "kind": "NON_NULL",
  670. "name": null,
  671. "ofType": {
  672. "kind": "INTERFACE",
  673. "name": "Node",
  674. "ofType": null
  675. }
  676. }
  677. }
  678. },
  679. "isDeprecated": false,
  680. "deprecationReason": null
  681. },
  682. {
  683. "name": "totalItems",
  684. "description": "",
  685. "args": [],
  686. "type": {
  687. "kind": "NON_NULL",
  688. "name": null,
  689. "ofType": {
  690. "kind": "SCALAR",
  691. "name": "Int",
  692. "ofType": null
  693. }
  694. },
  695. "isDeprecated": false,
  696. "deprecationReason": null
  697. }
  698. ],
  699. "inputFields": null,
  700. "interfaces": null,
  701. "enumValues": null,
  702. "possibleTypes": [
  703. {
  704. "kind": "OBJECT",
  705. "name": "CustomerList",
  706. "ofType": null
  707. },
  708. {
  709. "kind": "OBJECT",
  710. "name": "ProductList",
  711. "ofType": null
  712. }
  713. ]
  714. },
  715. {
  716. "kind": "OBJECT",
  717. "name": "Customer",
  718. "description": "",
  719. "fields": [
  720. {
  721. "name": "id",
  722. "description": "",
  723. "args": [],
  724. "type": {
  725. "kind": "NON_NULL",
  726. "name": null,
  727. "ofType": {
  728. "kind": "SCALAR",
  729. "name": "ID",
  730. "ofType": null
  731. }
  732. },
  733. "isDeprecated": false,
  734. "deprecationReason": null
  735. },
  736. {
  737. "name": "firstName",
  738. "description": "",
  739. "args": [],
  740. "type": {
  741. "kind": "SCALAR",
  742. "name": "String",
  743. "ofType": null
  744. },
  745. "isDeprecated": false,
  746. "deprecationReason": null
  747. },
  748. {
  749. "name": "lastName",
  750. "description": "",
  751. "args": [],
  752. "type": {
  753. "kind": "SCALAR",
  754. "name": "String",
  755. "ofType": null
  756. },
  757. "isDeprecated": false,
  758. "deprecationReason": null
  759. },
  760. {
  761. "name": "phoneNumber",
  762. "description": "",
  763. "args": [],
  764. "type": {
  765. "kind": "SCALAR",
  766. "name": "String",
  767. "ofType": null
  768. },
  769. "isDeprecated": false,
  770. "deprecationReason": null
  771. },
  772. {
  773. "name": "emailAddress",
  774. "description": "",
  775. "args": [],
  776. "type": {
  777. "kind": "SCALAR",
  778. "name": "String",
  779. "ofType": null
  780. },
  781. "isDeprecated": false,
  782. "deprecationReason": null
  783. },
  784. {
  785. "name": "addresses",
  786. "description": "",
  787. "args": [],
  788. "type": {
  789. "kind": "LIST",
  790. "name": null,
  791. "ofType": {
  792. "kind": "OBJECT",
  793. "name": "Address",
  794. "ofType": null
  795. }
  796. },
  797. "isDeprecated": false,
  798. "deprecationReason": null
  799. },
  800. {
  801. "name": "user",
  802. "description": "",
  803. "args": [],
  804. "type": {
  805. "kind": "OBJECT",
  806. "name": "User",
  807. "ofType": null
  808. },
  809. "isDeprecated": false,
  810. "deprecationReason": null
  811. }
  812. ],
  813. "inputFields": null,
  814. "interfaces": [
  815. {
  816. "kind": "INTERFACE",
  817. "name": "Node",
  818. "ofType": null
  819. }
  820. ],
  821. "enumValues": null,
  822. "possibleTypes": null
  823. },
  824. {
  825. "kind": "OBJECT",
  826. "name": "Address",
  827. "description": "",
  828. "fields": [
  829. {
  830. "name": "id",
  831. "description": "",
  832. "args": [],
  833. "type": {
  834. "kind": "NON_NULL",
  835. "name": null,
  836. "ofType": {
  837. "kind": "SCALAR",
  838. "name": "ID",
  839. "ofType": null
  840. }
  841. },
  842. "isDeprecated": false,
  843. "deprecationReason": null
  844. },
  845. {
  846. "name": "fullName",
  847. "description": "",
  848. "args": [],
  849. "type": {
  850. "kind": "SCALAR",
  851. "name": "String",
  852. "ofType": null
  853. },
  854. "isDeprecated": false,
  855. "deprecationReason": null
  856. },
  857. {
  858. "name": "company",
  859. "description": "",
  860. "args": [],
  861. "type": {
  862. "kind": "SCALAR",
  863. "name": "String",
  864. "ofType": null
  865. },
  866. "isDeprecated": false,
  867. "deprecationReason": null
  868. },
  869. {
  870. "name": "streetLine1",
  871. "description": "",
  872. "args": [],
  873. "type": {
  874. "kind": "SCALAR",
  875. "name": "String",
  876. "ofType": null
  877. },
  878. "isDeprecated": false,
  879. "deprecationReason": null
  880. },
  881. {
  882. "name": "streetLine2",
  883. "description": "",
  884. "args": [],
  885. "type": {
  886. "kind": "SCALAR",
  887. "name": "String",
  888. "ofType": null
  889. },
  890. "isDeprecated": false,
  891. "deprecationReason": null
  892. },
  893. {
  894. "name": "city",
  895. "description": "",
  896. "args": [],
  897. "type": {
  898. "kind": "SCALAR",
  899. "name": "String",
  900. "ofType": null
  901. },
  902. "isDeprecated": false,
  903. "deprecationReason": null
  904. },
  905. {
  906. "name": "province",
  907. "description": "",
  908. "args": [],
  909. "type": {
  910. "kind": "SCALAR",
  911. "name": "String",
  912. "ofType": null
  913. },
  914. "isDeprecated": false,
  915. "deprecationReason": null
  916. },
  917. {
  918. "name": "postalCode",
  919. "description": "",
  920. "args": [],
  921. "type": {
  922. "kind": "SCALAR",
  923. "name": "String",
  924. "ofType": null
  925. },
  926. "isDeprecated": false,
  927. "deprecationReason": null
  928. },
  929. {
  930. "name": "country",
  931. "description": "",
  932. "args": [],
  933. "type": {
  934. "kind": "SCALAR",
  935. "name": "String",
  936. "ofType": null
  937. },
  938. "isDeprecated": false,
  939. "deprecationReason": null
  940. },
  941. {
  942. "name": "phoneNumber",
  943. "description": "",
  944. "args": [],
  945. "type": {
  946. "kind": "SCALAR",
  947. "name": "String",
  948. "ofType": null
  949. },
  950. "isDeprecated": false,
  951. "deprecationReason": null
  952. },
  953. {
  954. "name": "defaultShippingAddress",
  955. "description": "",
  956. "args": [],
  957. "type": {
  958. "kind": "SCALAR",
  959. "name": "Boolean",
  960. "ofType": null
  961. },
  962. "isDeprecated": false,
  963. "deprecationReason": null
  964. },
  965. {
  966. "name": "defaultBillingAddress",
  967. "description": "",
  968. "args": [],
  969. "type": {
  970. "kind": "SCALAR",
  971. "name": "Boolean",
  972. "ofType": null
  973. },
  974. "isDeprecated": false,
  975. "deprecationReason": null
  976. }
  977. ],
  978. "inputFields": null,
  979. "interfaces": [
  980. {
  981. "kind": "INTERFACE",
  982. "name": "Node",
  983. "ofType": null
  984. }
  985. ],
  986. "enumValues": null,
  987. "possibleTypes": null
  988. },
  989. {
  990. "kind": "SCALAR",
  991. "name": "Boolean",
  992. "description": "The `Boolean` scalar type represents `true` or `false`.",
  993. "fields": null,
  994. "inputFields": null,
  995. "interfaces": null,
  996. "enumValues": null,
  997. "possibleTypes": null
  998. },
  999. {
  1000. "kind": "ENUM",
  1001. "name": "LanguageCode",
  1002. "description": "ISO 639-1 language code",
  1003. "fields": null,
  1004. "inputFields": null,
  1005. "interfaces": null,
  1006. "enumValues": [
  1007. {
  1008. "name": "aa",
  1009. "description": "Afar",
  1010. "isDeprecated": false,
  1011. "deprecationReason": null
  1012. },
  1013. {
  1014. "name": "ab",
  1015. "description": "Abkhazian",
  1016. "isDeprecated": false,
  1017. "deprecationReason": null
  1018. },
  1019. {
  1020. "name": "af",
  1021. "description": "Afrikaans",
  1022. "isDeprecated": false,
  1023. "deprecationReason": null
  1024. },
  1025. {
  1026. "name": "ak",
  1027. "description": "Akan",
  1028. "isDeprecated": false,
  1029. "deprecationReason": null
  1030. },
  1031. {
  1032. "name": "sq",
  1033. "description": "Albanian",
  1034. "isDeprecated": false,
  1035. "deprecationReason": null
  1036. },
  1037. {
  1038. "name": "am",
  1039. "description": "Amharic",
  1040. "isDeprecated": false,
  1041. "deprecationReason": null
  1042. },
  1043. {
  1044. "name": "ar",
  1045. "description": "Arabic",
  1046. "isDeprecated": false,
  1047. "deprecationReason": null
  1048. },
  1049. {
  1050. "name": "an",
  1051. "description": "Aragonese",
  1052. "isDeprecated": false,
  1053. "deprecationReason": null
  1054. },
  1055. {
  1056. "name": "hy",
  1057. "description": "Armenian",
  1058. "isDeprecated": false,
  1059. "deprecationReason": null
  1060. },
  1061. {
  1062. "name": "as",
  1063. "description": "Assamese",
  1064. "isDeprecated": false,
  1065. "deprecationReason": null
  1066. },
  1067. {
  1068. "name": "av",
  1069. "description": "Avaric",
  1070. "isDeprecated": false,
  1071. "deprecationReason": null
  1072. },
  1073. {
  1074. "name": "ae",
  1075. "description": "Avestan",
  1076. "isDeprecated": false,
  1077. "deprecationReason": null
  1078. },
  1079. {
  1080. "name": "ay",
  1081. "description": "Aymara",
  1082. "isDeprecated": false,
  1083. "deprecationReason": null
  1084. },
  1085. {
  1086. "name": "az",
  1087. "description": "Azerbaijani",
  1088. "isDeprecated": false,
  1089. "deprecationReason": null
  1090. },
  1091. {
  1092. "name": "ba",
  1093. "description": "Bashkir",
  1094. "isDeprecated": false,
  1095. "deprecationReason": null
  1096. },
  1097. {
  1098. "name": "bm",
  1099. "description": "Bambara",
  1100. "isDeprecated": false,
  1101. "deprecationReason": null
  1102. },
  1103. {
  1104. "name": "eu",
  1105. "description": "Basque",
  1106. "isDeprecated": false,
  1107. "deprecationReason": null
  1108. },
  1109. {
  1110. "name": "be",
  1111. "description": "Belarusian",
  1112. "isDeprecated": false,
  1113. "deprecationReason": null
  1114. },
  1115. {
  1116. "name": "bn",
  1117. "description": "Bengali",
  1118. "isDeprecated": false,
  1119. "deprecationReason": null
  1120. },
  1121. {
  1122. "name": "bh",
  1123. "description": "Bihari languages",
  1124. "isDeprecated": false,
  1125. "deprecationReason": null
  1126. },
  1127. {
  1128. "name": "bi",
  1129. "description": "Bislama",
  1130. "isDeprecated": false,
  1131. "deprecationReason": null
  1132. },
  1133. {
  1134. "name": "bs",
  1135. "description": "Bosnian",
  1136. "isDeprecated": false,
  1137. "deprecationReason": null
  1138. },
  1139. {
  1140. "name": "br",
  1141. "description": "Breton",
  1142. "isDeprecated": false,
  1143. "deprecationReason": null
  1144. },
  1145. {
  1146. "name": "bg",
  1147. "description": "Bulgarian",
  1148. "isDeprecated": false,
  1149. "deprecationReason": null
  1150. },
  1151. {
  1152. "name": "my",
  1153. "description": "Burmese",
  1154. "isDeprecated": false,
  1155. "deprecationReason": null
  1156. },
  1157. {
  1158. "name": "ca",
  1159. "description": "Catalan; Valencian",
  1160. "isDeprecated": false,
  1161. "deprecationReason": null
  1162. },
  1163. {
  1164. "name": "ch",
  1165. "description": "Chamorro",
  1166. "isDeprecated": false,
  1167. "deprecationReason": null
  1168. },
  1169. {
  1170. "name": "ce",
  1171. "description": "Chechen",
  1172. "isDeprecated": false,
  1173. "deprecationReason": null
  1174. },
  1175. {
  1176. "name": "zh",
  1177. "description": "Chinese",
  1178. "isDeprecated": false,
  1179. "deprecationReason": null
  1180. },
  1181. {
  1182. "name": "cu",
  1183. "description": "Church Slavic; Old Slavonic; Church Slavonic; Old Bulgarian; Old Church Slavonic",
  1184. "isDeprecated": false,
  1185. "deprecationReason": null
  1186. },
  1187. {
  1188. "name": "cv",
  1189. "description": "Chuvash",
  1190. "isDeprecated": false,
  1191. "deprecationReason": null
  1192. },
  1193. {
  1194. "name": "kw",
  1195. "description": "Cornish",
  1196. "isDeprecated": false,
  1197. "deprecationReason": null
  1198. },
  1199. {
  1200. "name": "co",
  1201. "description": "Corsican",
  1202. "isDeprecated": false,
  1203. "deprecationReason": null
  1204. },
  1205. {
  1206. "name": "cr",
  1207. "description": "Cree",
  1208. "isDeprecated": false,
  1209. "deprecationReason": null
  1210. },
  1211. {
  1212. "name": "cs",
  1213. "description": "Czech",
  1214. "isDeprecated": false,
  1215. "deprecationReason": null
  1216. },
  1217. {
  1218. "name": "da",
  1219. "description": "Danish",
  1220. "isDeprecated": false,
  1221. "deprecationReason": null
  1222. },
  1223. {
  1224. "name": "dv",
  1225. "description": "Divehi; Dhivehi; Maldivian",
  1226. "isDeprecated": false,
  1227. "deprecationReason": null
  1228. },
  1229. {
  1230. "name": "nl",
  1231. "description": "Dutch; Flemish",
  1232. "isDeprecated": false,
  1233. "deprecationReason": null
  1234. },
  1235. {
  1236. "name": "dz",
  1237. "description": "Dzongkha",
  1238. "isDeprecated": false,
  1239. "deprecationReason": null
  1240. },
  1241. {
  1242. "name": "en",
  1243. "description": "English",
  1244. "isDeprecated": false,
  1245. "deprecationReason": null
  1246. },
  1247. {
  1248. "name": "eo",
  1249. "description": "Esperanto",
  1250. "isDeprecated": false,
  1251. "deprecationReason": null
  1252. },
  1253. {
  1254. "name": "et",
  1255. "description": "Estonian",
  1256. "isDeprecated": false,
  1257. "deprecationReason": null
  1258. },
  1259. {
  1260. "name": "ee",
  1261. "description": "Ewe",
  1262. "isDeprecated": false,
  1263. "deprecationReason": null
  1264. },
  1265. {
  1266. "name": "fo",
  1267. "description": "Faroese",
  1268. "isDeprecated": false,
  1269. "deprecationReason": null
  1270. },
  1271. {
  1272. "name": "fj",
  1273. "description": "Fijian",
  1274. "isDeprecated": false,
  1275. "deprecationReason": null
  1276. },
  1277. {
  1278. "name": "fi",
  1279. "description": "Finnish",
  1280. "isDeprecated": false,
  1281. "deprecationReason": null
  1282. },
  1283. {
  1284. "name": "fr",
  1285. "description": "French",
  1286. "isDeprecated": false,
  1287. "deprecationReason": null
  1288. },
  1289. {
  1290. "name": "fy",
  1291. "description": "Western Frisian",
  1292. "isDeprecated": false,
  1293. "deprecationReason": null
  1294. },
  1295. {
  1296. "name": "ff",
  1297. "description": "Fulah",
  1298. "isDeprecated": false,
  1299. "deprecationReason": null
  1300. },
  1301. {
  1302. "name": "ka",
  1303. "description": "Georgian",
  1304. "isDeprecated": false,
  1305. "deprecationReason": null
  1306. },
  1307. {
  1308. "name": "de",
  1309. "description": "German",
  1310. "isDeprecated": false,
  1311. "deprecationReason": null
  1312. },
  1313. {
  1314. "name": "gd",
  1315. "description": "Gaelic; Scottish Gaelic",
  1316. "isDeprecated": false,
  1317. "deprecationReason": null
  1318. },
  1319. {
  1320. "name": "ga",
  1321. "description": "Irish",
  1322. "isDeprecated": false,
  1323. "deprecationReason": null
  1324. },
  1325. {
  1326. "name": "gl",
  1327. "description": "Galician",
  1328. "isDeprecated": false,
  1329. "deprecationReason": null
  1330. },
  1331. {
  1332. "name": "gv",
  1333. "description": "Manx",
  1334. "isDeprecated": false,
  1335. "deprecationReason": null
  1336. },
  1337. {
  1338. "name": "el",
  1339. "description": "Greek, Modern (1453-)",
  1340. "isDeprecated": false,
  1341. "deprecationReason": null
  1342. },
  1343. {
  1344. "name": "gn",
  1345. "description": "Guarani",
  1346. "isDeprecated": false,
  1347. "deprecationReason": null
  1348. },
  1349. {
  1350. "name": "gu",
  1351. "description": "Gujarati",
  1352. "isDeprecated": false,
  1353. "deprecationReason": null
  1354. },
  1355. {
  1356. "name": "ht",
  1357. "description": "Haitian; Haitian Creole",
  1358. "isDeprecated": false,
  1359. "deprecationReason": null
  1360. },
  1361. {
  1362. "name": "ha",
  1363. "description": "Hausa",
  1364. "isDeprecated": false,
  1365. "deprecationReason": null
  1366. },
  1367. {
  1368. "name": "he",
  1369. "description": "Hebrew",
  1370. "isDeprecated": false,
  1371. "deprecationReason": null
  1372. },
  1373. {
  1374. "name": "hz",
  1375. "description": "Herero",
  1376. "isDeprecated": false,
  1377. "deprecationReason": null
  1378. },
  1379. {
  1380. "name": "hi",
  1381. "description": "Hindi",
  1382. "isDeprecated": false,
  1383. "deprecationReason": null
  1384. },
  1385. {
  1386. "name": "ho",
  1387. "description": "Hiri Motu",
  1388. "isDeprecated": false,
  1389. "deprecationReason": null
  1390. },
  1391. {
  1392. "name": "hr",
  1393. "description": "Croatian",
  1394. "isDeprecated": false,
  1395. "deprecationReason": null
  1396. },
  1397. {
  1398. "name": "hu",
  1399. "description": "Hungarian",
  1400. "isDeprecated": false,
  1401. "deprecationReason": null
  1402. },
  1403. {
  1404. "name": "ig",
  1405. "description": "Igbo",
  1406. "isDeprecated": false,
  1407. "deprecationReason": null
  1408. },
  1409. {
  1410. "name": "is",
  1411. "description": "Icelandic",
  1412. "isDeprecated": false,
  1413. "deprecationReason": null
  1414. },
  1415. {
  1416. "name": "io",
  1417. "description": "Ido",
  1418. "isDeprecated": false,
  1419. "deprecationReason": null
  1420. },
  1421. {
  1422. "name": "ii",
  1423. "description": "Sichuan Yi; Nuosu",
  1424. "isDeprecated": false,
  1425. "deprecationReason": null
  1426. },
  1427. {
  1428. "name": "iu",
  1429. "description": "Inuktitut",
  1430. "isDeprecated": false,
  1431. "deprecationReason": null
  1432. },
  1433. {
  1434. "name": "ie",
  1435. "description": "Interlingue; Occidental",
  1436. "isDeprecated": false,
  1437. "deprecationReason": null
  1438. },
  1439. {
  1440. "name": "ia",
  1441. "description": "Interlingua (International Auxiliary Language Association)",
  1442. "isDeprecated": false,
  1443. "deprecationReason": null
  1444. },
  1445. {
  1446. "name": "id",
  1447. "description": "Indonesian",
  1448. "isDeprecated": false,
  1449. "deprecationReason": null
  1450. },
  1451. {
  1452. "name": "ik",
  1453. "description": "Inupiaq",
  1454. "isDeprecated": false,
  1455. "deprecationReason": null
  1456. },
  1457. {
  1458. "name": "it",
  1459. "description": "Italian",
  1460. "isDeprecated": false,
  1461. "deprecationReason": null
  1462. },
  1463. {
  1464. "name": "jv",
  1465. "description": "Javanese",
  1466. "isDeprecated": false,
  1467. "deprecationReason": null
  1468. },
  1469. {
  1470. "name": "ja",
  1471. "description": "Japanese",
  1472. "isDeprecated": false,
  1473. "deprecationReason": null
  1474. },
  1475. {
  1476. "name": "kl",
  1477. "description": "Kalaallisut; Greenlandic",
  1478. "isDeprecated": false,
  1479. "deprecationReason": null
  1480. },
  1481. {
  1482. "name": "kn",
  1483. "description": "Kannada",
  1484. "isDeprecated": false,
  1485. "deprecationReason": null
  1486. },
  1487. {
  1488. "name": "ks",
  1489. "description": "Kashmiri",
  1490. "isDeprecated": false,
  1491. "deprecationReason": null
  1492. },
  1493. {
  1494. "name": "kr",
  1495. "description": "Kanuri",
  1496. "isDeprecated": false,
  1497. "deprecationReason": null
  1498. },
  1499. {
  1500. "name": "kk",
  1501. "description": "Kazakh",
  1502. "isDeprecated": false,
  1503. "deprecationReason": null
  1504. },
  1505. {
  1506. "name": "km",
  1507. "description": "Central Khmer",
  1508. "isDeprecated": false,
  1509. "deprecationReason": null
  1510. },
  1511. {
  1512. "name": "ki",
  1513. "description": "Kikuyu; Gikuyu",
  1514. "isDeprecated": false,
  1515. "deprecationReason": null
  1516. },
  1517. {
  1518. "name": "rw",
  1519. "description": "Kinyarwanda",
  1520. "isDeprecated": false,
  1521. "deprecationReason": null
  1522. },
  1523. {
  1524. "name": "ky",
  1525. "description": "Kirghiz; Kyrgyz",
  1526. "isDeprecated": false,
  1527. "deprecationReason": null
  1528. },
  1529. {
  1530. "name": "kv",
  1531. "description": "Komi",
  1532. "isDeprecated": false,
  1533. "deprecationReason": null
  1534. },
  1535. {
  1536. "name": "kg",
  1537. "description": "Kongo",
  1538. "isDeprecated": false,
  1539. "deprecationReason": null
  1540. },
  1541. {
  1542. "name": "ko",
  1543. "description": "Korean",
  1544. "isDeprecated": false,
  1545. "deprecationReason": null
  1546. },
  1547. {
  1548. "name": "kj",
  1549. "description": "Kuanyama; Kwanyama",
  1550. "isDeprecated": false,
  1551. "deprecationReason": null
  1552. },
  1553. {
  1554. "name": "ku",
  1555. "description": "Kurdish",
  1556. "isDeprecated": false,
  1557. "deprecationReason": null
  1558. },
  1559. {
  1560. "name": "lo",
  1561. "description": "Lao",
  1562. "isDeprecated": false,
  1563. "deprecationReason": null
  1564. },
  1565. {
  1566. "name": "la",
  1567. "description": "Latin",
  1568. "isDeprecated": false,
  1569. "deprecationReason": null
  1570. },
  1571. {
  1572. "name": "lv",
  1573. "description": "Latvian",
  1574. "isDeprecated": false,
  1575. "deprecationReason": null
  1576. },
  1577. {
  1578. "name": "li",
  1579. "description": "Limburgan; Limburger; Limburgish",
  1580. "isDeprecated": false,
  1581. "deprecationReason": null
  1582. },
  1583. {
  1584. "name": "ln",
  1585. "description": "Lingala",
  1586. "isDeprecated": false,
  1587. "deprecationReason": null
  1588. },
  1589. {
  1590. "name": "lt",
  1591. "description": "Lithuanian",
  1592. "isDeprecated": false,
  1593. "deprecationReason": null
  1594. },
  1595. {
  1596. "name": "lb",
  1597. "description": "Luxembourgish; Letzeburgesch",
  1598. "isDeprecated": false,
  1599. "deprecationReason": null
  1600. },
  1601. {
  1602. "name": "lu",
  1603. "description": "Luba-Katanga",
  1604. "isDeprecated": false,
  1605. "deprecationReason": null
  1606. },
  1607. {
  1608. "name": "lg",
  1609. "description": "Ganda",
  1610. "isDeprecated": false,
  1611. "deprecationReason": null
  1612. },
  1613. {
  1614. "name": "mk",
  1615. "description": "Macedonian",
  1616. "isDeprecated": false,
  1617. "deprecationReason": null
  1618. },
  1619. {
  1620. "name": "mh",
  1621. "description": "Marshallese",
  1622. "isDeprecated": false,
  1623. "deprecationReason": null
  1624. },
  1625. {
  1626. "name": "ml",
  1627. "description": "Malayalam",
  1628. "isDeprecated": false,
  1629. "deprecationReason": null
  1630. },
  1631. {
  1632. "name": "mi",
  1633. "description": "Maori",
  1634. "isDeprecated": false,
  1635. "deprecationReason": null
  1636. },
  1637. {
  1638. "name": "mr",
  1639. "description": "Marathi",
  1640. "isDeprecated": false,
  1641. "deprecationReason": null
  1642. },
  1643. {
  1644. "name": "ms",
  1645. "description": "Malay",
  1646. "isDeprecated": false,
  1647. "deprecationReason": null
  1648. },
  1649. {
  1650. "name": "mg",
  1651. "description": "Malagasy",
  1652. "isDeprecated": false,
  1653. "deprecationReason": null
  1654. },
  1655. {
  1656. "name": "mt",
  1657. "description": "Maltese",
  1658. "isDeprecated": false,
  1659. "deprecationReason": null
  1660. },
  1661. {
  1662. "name": "mn",
  1663. "description": "Mongolian",
  1664. "isDeprecated": false,
  1665. "deprecationReason": null
  1666. },
  1667. {
  1668. "name": "na",
  1669. "description": "Nauru",
  1670. "isDeprecated": false,
  1671. "deprecationReason": null
  1672. },
  1673. {
  1674. "name": "nv",
  1675. "description": "Navajo; Navaho",
  1676. "isDeprecated": false,
  1677. "deprecationReason": null
  1678. },
  1679. {
  1680. "name": "nr",
  1681. "description": "Ndebele, South; South Ndebele",
  1682. "isDeprecated": false,
  1683. "deprecationReason": null
  1684. },
  1685. {
  1686. "name": "nd",
  1687. "description": "Ndebele, North; North Ndebele",
  1688. "isDeprecated": false,
  1689. "deprecationReason": null
  1690. },
  1691. {
  1692. "name": "ng",
  1693. "description": "Ndonga",
  1694. "isDeprecated": false,
  1695. "deprecationReason": null
  1696. },
  1697. {
  1698. "name": "ne",
  1699. "description": "Nepali",
  1700. "isDeprecated": false,
  1701. "deprecationReason": null
  1702. },
  1703. {
  1704. "name": "nn",
  1705. "description": "Norwegian Nynorsk; Nynorsk, Norwegian",
  1706. "isDeprecated": false,
  1707. "deprecationReason": null
  1708. },
  1709. {
  1710. "name": "nb",
  1711. "description": "Bokmål, Norwegian; Norwegian Bokmål",
  1712. "isDeprecated": false,
  1713. "deprecationReason": null
  1714. },
  1715. {
  1716. "name": "no",
  1717. "description": "Norwegian",
  1718. "isDeprecated": false,
  1719. "deprecationReason": null
  1720. },
  1721. {
  1722. "name": "ny",
  1723. "description": "Chichewa; Chewa; Nyanja",
  1724. "isDeprecated": false,
  1725. "deprecationReason": null
  1726. },
  1727. {
  1728. "name": "oc",
  1729. "description": "Occitan (post 1500); Provençal",
  1730. "isDeprecated": false,
  1731. "deprecationReason": null
  1732. },
  1733. {
  1734. "name": "oj",
  1735. "description": "Ojibwa",
  1736. "isDeprecated": false,
  1737. "deprecationReason": null
  1738. },
  1739. {
  1740. "name": "or",
  1741. "description": "Oriya",
  1742. "isDeprecated": false,
  1743. "deprecationReason": null
  1744. },
  1745. {
  1746. "name": "om",
  1747. "description": "Oromo",
  1748. "isDeprecated": false,
  1749. "deprecationReason": null
  1750. },
  1751. {
  1752. "name": "os",
  1753. "description": "Ossetian; Ossetic",
  1754. "isDeprecated": false,
  1755. "deprecationReason": null
  1756. },
  1757. {
  1758. "name": "pa",
  1759. "description": "Panjabi; Punjabi",
  1760. "isDeprecated": false,
  1761. "deprecationReason": null
  1762. },
  1763. {
  1764. "name": "fa",
  1765. "description": "Persian",
  1766. "isDeprecated": false,
  1767. "deprecationReason": null
  1768. },
  1769. {
  1770. "name": "pi",
  1771. "description": "Pali",
  1772. "isDeprecated": false,
  1773. "deprecationReason": null
  1774. },
  1775. {
  1776. "name": "pl",
  1777. "description": "Polish",
  1778. "isDeprecated": false,
  1779. "deprecationReason": null
  1780. },
  1781. {
  1782. "name": "pt",
  1783. "description": "Portuguese",
  1784. "isDeprecated": false,
  1785. "deprecationReason": null
  1786. },
  1787. {
  1788. "name": "ps",
  1789. "description": "Pushto; Pashto",
  1790. "isDeprecated": false,
  1791. "deprecationReason": null
  1792. },
  1793. {
  1794. "name": "qu",
  1795. "description": "Quechua",
  1796. "isDeprecated": false,
  1797. "deprecationReason": null
  1798. },
  1799. {
  1800. "name": "rm",
  1801. "description": "Romansh",
  1802. "isDeprecated": false,
  1803. "deprecationReason": null
  1804. },
  1805. {
  1806. "name": "ro",
  1807. "description": "Romanian; Moldavian; Moldovan",
  1808. "isDeprecated": false,
  1809. "deprecationReason": null
  1810. },
  1811. {
  1812. "name": "rn",
  1813. "description": "Rundi",
  1814. "isDeprecated": false,
  1815. "deprecationReason": null
  1816. },
  1817. {
  1818. "name": "ru",
  1819. "description": "Russian",
  1820. "isDeprecated": false,
  1821. "deprecationReason": null
  1822. },
  1823. {
  1824. "name": "sg",
  1825. "description": "Sango",
  1826. "isDeprecated": false,
  1827. "deprecationReason": null
  1828. },
  1829. {
  1830. "name": "sa",
  1831. "description": "Sanskrit",
  1832. "isDeprecated": false,
  1833. "deprecationReason": null
  1834. },
  1835. {
  1836. "name": "si",
  1837. "description": "Sinhala; Sinhalese",
  1838. "isDeprecated": false,
  1839. "deprecationReason": null
  1840. },
  1841. {
  1842. "name": "sk",
  1843. "description": "Slovak",
  1844. "isDeprecated": false,
  1845. "deprecationReason": null
  1846. },
  1847. {
  1848. "name": "sl",
  1849. "description": "Slovenian",
  1850. "isDeprecated": false,
  1851. "deprecationReason": null
  1852. },
  1853. {
  1854. "name": "se",
  1855. "description": "Northern Sami",
  1856. "isDeprecated": false,
  1857. "deprecationReason": null
  1858. },
  1859. {
  1860. "name": "sm",
  1861. "description": "Samoan",
  1862. "isDeprecated": false,
  1863. "deprecationReason": null
  1864. },
  1865. {
  1866. "name": "sn",
  1867. "description": "Shona",
  1868. "isDeprecated": false,
  1869. "deprecationReason": null
  1870. },
  1871. {
  1872. "name": "sd",
  1873. "description": "Sindhi",
  1874. "isDeprecated": false,
  1875. "deprecationReason": null
  1876. },
  1877. {
  1878. "name": "so",
  1879. "description": "Somali",
  1880. "isDeprecated": false,
  1881. "deprecationReason": null
  1882. },
  1883. {
  1884. "name": "st",
  1885. "description": "Sotho, Southern",
  1886. "isDeprecated": false,
  1887. "deprecationReason": null
  1888. },
  1889. {
  1890. "name": "es",
  1891. "description": "Spanish; Castilian",
  1892. "isDeprecated": false,
  1893. "deprecationReason": null
  1894. },
  1895. {
  1896. "name": "sc",
  1897. "description": "Sardinian",
  1898. "isDeprecated": false,
  1899. "deprecationReason": null
  1900. },
  1901. {
  1902. "name": "sr",
  1903. "description": "Serbian",
  1904. "isDeprecated": false,
  1905. "deprecationReason": null
  1906. },
  1907. {
  1908. "name": "ss",
  1909. "description": "Swati",
  1910. "isDeprecated": false,
  1911. "deprecationReason": null
  1912. },
  1913. {
  1914. "name": "su",
  1915. "description": "Sundanese",
  1916. "isDeprecated": false,
  1917. "deprecationReason": null
  1918. },
  1919. {
  1920. "name": "sw",
  1921. "description": "Swahili",
  1922. "isDeprecated": false,
  1923. "deprecationReason": null
  1924. },
  1925. {
  1926. "name": "sv",
  1927. "description": "Swedish",
  1928. "isDeprecated": false,
  1929. "deprecationReason": null
  1930. },
  1931. {
  1932. "name": "ty",
  1933. "description": "Tahitian",
  1934. "isDeprecated": false,
  1935. "deprecationReason": null
  1936. },
  1937. {
  1938. "name": "ta",
  1939. "description": "Tamil",
  1940. "isDeprecated": false,
  1941. "deprecationReason": null
  1942. },
  1943. {
  1944. "name": "tt",
  1945. "description": "Tatar",
  1946. "isDeprecated": false,
  1947. "deprecationReason": null
  1948. },
  1949. {
  1950. "name": "te",
  1951. "description": "Telugu",
  1952. "isDeprecated": false,
  1953. "deprecationReason": null
  1954. },
  1955. {
  1956. "name": "tg",
  1957. "description": "Tajik",
  1958. "isDeprecated": false,
  1959. "deprecationReason": null
  1960. },
  1961. {
  1962. "name": "tl",
  1963. "description": "Tagalog",
  1964. "isDeprecated": false,
  1965. "deprecationReason": null
  1966. },
  1967. {
  1968. "name": "th",
  1969. "description": "Thai",
  1970. "isDeprecated": false,
  1971. "deprecationReason": null
  1972. },
  1973. {
  1974. "name": "bo",
  1975. "description": "Tibetan",
  1976. "isDeprecated": false,
  1977. "deprecationReason": null
  1978. },
  1979. {
  1980. "name": "ti",
  1981. "description": "Tigrinya",
  1982. "isDeprecated": false,
  1983. "deprecationReason": null
  1984. },
  1985. {
  1986. "name": "to",
  1987. "description": "Tonga (Tonga Islands)",
  1988. "isDeprecated": false,
  1989. "deprecationReason": null
  1990. },
  1991. {
  1992. "name": "tn",
  1993. "description": "Tswana",
  1994. "isDeprecated": false,
  1995. "deprecationReason": null
  1996. },
  1997. {
  1998. "name": "ts",
  1999. "description": "Tsonga",
  2000. "isDeprecated": false,
  2001. "deprecationReason": null
  2002. },
  2003. {
  2004. "name": "tk",
  2005. "description": "Turkmen",
  2006. "isDeprecated": false,
  2007. "deprecationReason": null
  2008. },
  2009. {
  2010. "name": "tr",
  2011. "description": "Turkish",
  2012. "isDeprecated": false,
  2013. "deprecationReason": null
  2014. },
  2015. {
  2016. "name": "tw",
  2017. "description": "Twi",
  2018. "isDeprecated": false,
  2019. "deprecationReason": null
  2020. },
  2021. {
  2022. "name": "ug",
  2023. "description": "Uighur; Uyghur",
  2024. "isDeprecated": false,
  2025. "deprecationReason": null
  2026. },
  2027. {
  2028. "name": "uk",
  2029. "description": "Ukrainian",
  2030. "isDeprecated": false,
  2031. "deprecationReason": null
  2032. },
  2033. {
  2034. "name": "ur",
  2035. "description": "Urdu",
  2036. "isDeprecated": false,
  2037. "deprecationReason": null
  2038. },
  2039. {
  2040. "name": "uz",
  2041. "description": "Uzbek",
  2042. "isDeprecated": false,
  2043. "deprecationReason": null
  2044. },
  2045. {
  2046. "name": "ve",
  2047. "description": "Venda",
  2048. "isDeprecated": false,
  2049. "deprecationReason": null
  2050. },
  2051. {
  2052. "name": "vi",
  2053. "description": "Vietnamese",
  2054. "isDeprecated": false,
  2055. "deprecationReason": null
  2056. },
  2057. {
  2058. "name": "vo",
  2059. "description": "Volapük",
  2060. "isDeprecated": false,
  2061. "deprecationReason": null
  2062. },
  2063. {
  2064. "name": "cy",
  2065. "description": "Welsh",
  2066. "isDeprecated": false,
  2067. "deprecationReason": null
  2068. },
  2069. {
  2070. "name": "wa",
  2071. "description": "Walloon",
  2072. "isDeprecated": false,
  2073. "deprecationReason": null
  2074. },
  2075. {
  2076. "name": "wo",
  2077. "description": "Wolof",
  2078. "isDeprecated": false,
  2079. "deprecationReason": null
  2080. },
  2081. {
  2082. "name": "xh",
  2083. "description": "Xhosa",
  2084. "isDeprecated": false,
  2085. "deprecationReason": null
  2086. },
  2087. {
  2088. "name": "yi",
  2089. "description": "Yiddish",
  2090. "isDeprecated": false,
  2091. "deprecationReason": null
  2092. },
  2093. {
  2094. "name": "yo",
  2095. "description": "Yoruba",
  2096. "isDeprecated": false,
  2097. "deprecationReason": null
  2098. },
  2099. {
  2100. "name": "za",
  2101. "description": "Zhuang; Chuang",
  2102. "isDeprecated": false,
  2103. "deprecationReason": null
  2104. },
  2105. {
  2106. "name": "zu",
  2107. "description": "Zulu",
  2108. "isDeprecated": false,
  2109. "deprecationReason": null
  2110. }
  2111. ],
  2112. "possibleTypes": null
  2113. },
  2114. {
  2115. "kind": "OBJECT",
  2116. "name": "ProductOptionGroup",
  2117. "description": "",
  2118. "fields": [
  2119. {
  2120. "name": "id",
  2121. "description": "",
  2122. "args": [],
  2123. "type": {
  2124. "kind": "NON_NULL",
  2125. "name": null,
  2126. "ofType": {
  2127. "kind": "SCALAR",
  2128. "name": "ID",
  2129. "ofType": null
  2130. }
  2131. },
  2132. "isDeprecated": false,
  2133. "deprecationReason": null
  2134. },
  2135. {
  2136. "name": "languageCode",
  2137. "description": "",
  2138. "args": [],
  2139. "type": {
  2140. "kind": "ENUM",
  2141. "name": "LanguageCode",
  2142. "ofType": null
  2143. },
  2144. "isDeprecated": false,
  2145. "deprecationReason": null
  2146. },
  2147. {
  2148. "name": "code",
  2149. "description": "",
  2150. "args": [],
  2151. "type": {
  2152. "kind": "SCALAR",
  2153. "name": "String",
  2154. "ofType": null
  2155. },
  2156. "isDeprecated": false,
  2157. "deprecationReason": null
  2158. },
  2159. {
  2160. "name": "name",
  2161. "description": "",
  2162. "args": [],
  2163. "type": {
  2164. "kind": "SCALAR",
  2165. "name": "String",
  2166. "ofType": null
  2167. },
  2168. "isDeprecated": false,
  2169. "deprecationReason": null
  2170. },
  2171. {
  2172. "name": "options",
  2173. "description": "",
  2174. "args": [],
  2175. "type": {
  2176. "kind": "LIST",
  2177. "name": null,
  2178. "ofType": {
  2179. "kind": "OBJECT",
  2180. "name": "ProductOption",
  2181. "ofType": null
  2182. }
  2183. },
  2184. "isDeprecated": false,
  2185. "deprecationReason": null
  2186. },
  2187. {
  2188. "name": "translations",
  2189. "description": "",
  2190. "args": [],
  2191. "type": {
  2192. "kind": "LIST",
  2193. "name": null,
  2194. "ofType": {
  2195. "kind": "OBJECT",
  2196. "name": "ProductOptionGroupTranslation",
  2197. "ofType": null
  2198. }
  2199. },
  2200. "isDeprecated": false,
  2201. "deprecationReason": null
  2202. }
  2203. ],
  2204. "inputFields": null,
  2205. "interfaces": [
  2206. {
  2207. "kind": "INTERFACE",
  2208. "name": "Node",
  2209. "ofType": null
  2210. }
  2211. ],
  2212. "enumValues": null,
  2213. "possibleTypes": null
  2214. },
  2215. {
  2216. "kind": "OBJECT",
  2217. "name": "ProductOption",
  2218. "description": "",
  2219. "fields": [
  2220. {
  2221. "name": "id",
  2222. "description": "",
  2223. "args": [],
  2224. "type": {
  2225. "kind": "NON_NULL",
  2226. "name": null,
  2227. "ofType": {
  2228. "kind": "SCALAR",
  2229. "name": "ID",
  2230. "ofType": null
  2231. }
  2232. },
  2233. "isDeprecated": false,
  2234. "deprecationReason": null
  2235. },
  2236. {
  2237. "name": "languageCode",
  2238. "description": "",
  2239. "args": [],
  2240. "type": {
  2241. "kind": "ENUM",
  2242. "name": "LanguageCode",
  2243. "ofType": null
  2244. },
  2245. "isDeprecated": false,
  2246. "deprecationReason": null
  2247. },
  2248. {
  2249. "name": "code",
  2250. "description": "",
  2251. "args": [],
  2252. "type": {
  2253. "kind": "SCALAR",
  2254. "name": "String",
  2255. "ofType": null
  2256. },
  2257. "isDeprecated": false,
  2258. "deprecationReason": null
  2259. },
  2260. {
  2261. "name": "name",
  2262. "description": "",
  2263. "args": [],
  2264. "type": {
  2265. "kind": "SCALAR",
  2266. "name": "String",
  2267. "ofType": null
  2268. },
  2269. "isDeprecated": false,
  2270. "deprecationReason": null
  2271. },
  2272. {
  2273. "name": "translations",
  2274. "description": "",
  2275. "args": [],
  2276. "type": {
  2277. "kind": "LIST",
  2278. "name": null,
  2279. "ofType": {
  2280. "kind": "OBJECT",
  2281. "name": "ProductOptionTranslation",
  2282. "ofType": null
  2283. }
  2284. },
  2285. "isDeprecated": false,
  2286. "deprecationReason": null
  2287. }
  2288. ],
  2289. "inputFields": null,
  2290. "interfaces": [
  2291. {
  2292. "kind": "INTERFACE",
  2293. "name": "Node",
  2294. "ofType": null
  2295. }
  2296. ],
  2297. "enumValues": null,
  2298. "possibleTypes": null
  2299. },
  2300. {
  2301. "kind": "OBJECT",
  2302. "name": "ProductOptionTranslation",
  2303. "description": "",
  2304. "fields": [
  2305. {
  2306. "name": "id",
  2307. "description": "",
  2308. "args": [],
  2309. "type": {
  2310. "kind": "NON_NULL",
  2311. "name": null,
  2312. "ofType": {
  2313. "kind": "SCALAR",
  2314. "name": "ID",
  2315. "ofType": null
  2316. }
  2317. },
  2318. "isDeprecated": false,
  2319. "deprecationReason": null
  2320. },
  2321. {
  2322. "name": "languageCode",
  2323. "description": "",
  2324. "args": [],
  2325. "type": {
  2326. "kind": "NON_NULL",
  2327. "name": null,
  2328. "ofType": {
  2329. "kind": "ENUM",
  2330. "name": "LanguageCode",
  2331. "ofType": null
  2332. }
  2333. },
  2334. "isDeprecated": false,
  2335. "deprecationReason": null
  2336. },
  2337. {
  2338. "name": "name",
  2339. "description": "",
  2340. "args": [],
  2341. "type": {
  2342. "kind": "NON_NULL",
  2343. "name": null,
  2344. "ofType": {
  2345. "kind": "SCALAR",
  2346. "name": "String",
  2347. "ofType": null
  2348. }
  2349. },
  2350. "isDeprecated": false,
  2351. "deprecationReason": null
  2352. }
  2353. ],
  2354. "inputFields": null,
  2355. "interfaces": [],
  2356. "enumValues": null,
  2357. "possibleTypes": null
  2358. },
  2359. {
  2360. "kind": "OBJECT",
  2361. "name": "ProductOptionGroupTranslation",
  2362. "description": "",
  2363. "fields": [
  2364. {
  2365. "name": "id",
  2366. "description": "",
  2367. "args": [],
  2368. "type": {
  2369. "kind": "NON_NULL",
  2370. "name": null,
  2371. "ofType": {
  2372. "kind": "SCALAR",
  2373. "name": "ID",
  2374. "ofType": null
  2375. }
  2376. },
  2377. "isDeprecated": false,
  2378. "deprecationReason": null
  2379. },
  2380. {
  2381. "name": "languageCode",
  2382. "description": "",
  2383. "args": [],
  2384. "type": {
  2385. "kind": "NON_NULL",
  2386. "name": null,
  2387. "ofType": {
  2388. "kind": "ENUM",
  2389. "name": "LanguageCode",
  2390. "ofType": null
  2391. }
  2392. },
  2393. "isDeprecated": false,
  2394. "deprecationReason": null
  2395. },
  2396. {
  2397. "name": "name",
  2398. "description": "",
  2399. "args": [],
  2400. "type": {
  2401. "kind": "NON_NULL",
  2402. "name": null,
  2403. "ofType": {
  2404. "kind": "SCALAR",
  2405. "name": "String",
  2406. "ofType": null
  2407. }
  2408. },
  2409. "isDeprecated": false,
  2410. "deprecationReason": null
  2411. }
  2412. ],
  2413. "inputFields": null,
  2414. "interfaces": [],
  2415. "enumValues": null,
  2416. "possibleTypes": null
  2417. },
  2418. {
  2419. "kind": "OBJECT",
  2420. "name": "ProductList",
  2421. "description": "",
  2422. "fields": [
  2423. {
  2424. "name": "items",
  2425. "description": "",
  2426. "args": [],
  2427. "type": {
  2428. "kind": "NON_NULL",
  2429. "name": null,
  2430. "ofType": {
  2431. "kind": "LIST",
  2432. "name": null,
  2433. "ofType": {
  2434. "kind": "NON_NULL",
  2435. "name": null,
  2436. "ofType": {
  2437. "kind": "OBJECT",
  2438. "name": "Product",
  2439. "ofType": null
  2440. }
  2441. }
  2442. }
  2443. },
  2444. "isDeprecated": false,
  2445. "deprecationReason": null
  2446. },
  2447. {
  2448. "name": "totalItems",
  2449. "description": "",
  2450. "args": [],
  2451. "type": {
  2452. "kind": "NON_NULL",
  2453. "name": null,
  2454. "ofType": {
  2455. "kind": "SCALAR",
  2456. "name": "Int",
  2457. "ofType": null
  2458. }
  2459. },
  2460. "isDeprecated": false,
  2461. "deprecationReason": null
  2462. }
  2463. ],
  2464. "inputFields": null,
  2465. "interfaces": [
  2466. {
  2467. "kind": "INTERFACE",
  2468. "name": "PaginatedList",
  2469. "ofType": null
  2470. }
  2471. ],
  2472. "enumValues": null,
  2473. "possibleTypes": null
  2474. },
  2475. {
  2476. "kind": "OBJECT",
  2477. "name": "Product",
  2478. "description": "",
  2479. "fields": [
  2480. {
  2481. "name": "id",
  2482. "description": "",
  2483. "args": [],
  2484. "type": {
  2485. "kind": "NON_NULL",
  2486. "name": null,
  2487. "ofType": {
  2488. "kind": "SCALAR",
  2489. "name": "ID",
  2490. "ofType": null
  2491. }
  2492. },
  2493. "isDeprecated": false,
  2494. "deprecationReason": null
  2495. },
  2496. {
  2497. "name": "languageCode",
  2498. "description": "",
  2499. "args": [],
  2500. "type": {
  2501. "kind": "ENUM",
  2502. "name": "LanguageCode",
  2503. "ofType": null
  2504. },
  2505. "isDeprecated": false,
  2506. "deprecationReason": null
  2507. },
  2508. {
  2509. "name": "name",
  2510. "description": "",
  2511. "args": [],
  2512. "type": {
  2513. "kind": "SCALAR",
  2514. "name": "String",
  2515. "ofType": null
  2516. },
  2517. "isDeprecated": false,
  2518. "deprecationReason": null
  2519. },
  2520. {
  2521. "name": "slug",
  2522. "description": "",
  2523. "args": [],
  2524. "type": {
  2525. "kind": "SCALAR",
  2526. "name": "String",
  2527. "ofType": null
  2528. },
  2529. "isDeprecated": false,
  2530. "deprecationReason": null
  2531. },
  2532. {
  2533. "name": "description",
  2534. "description": "",
  2535. "args": [],
  2536. "type": {
  2537. "kind": "SCALAR",
  2538. "name": "String",
  2539. "ofType": null
  2540. },
  2541. "isDeprecated": false,
  2542. "deprecationReason": null
  2543. },
  2544. {
  2545. "name": "image",
  2546. "description": "",
  2547. "args": [],
  2548. "type": {
  2549. "kind": "SCALAR",
  2550. "name": "String",
  2551. "ofType": null
  2552. },
  2553. "isDeprecated": false,
  2554. "deprecationReason": null
  2555. },
  2556. {
  2557. "name": "variants",
  2558. "description": "",
  2559. "args": [],
  2560. "type": {
  2561. "kind": "LIST",
  2562. "name": null,
  2563. "ofType": {
  2564. "kind": "OBJECT",
  2565. "name": "ProductVariant",
  2566. "ofType": null
  2567. }
  2568. },
  2569. "isDeprecated": false,
  2570. "deprecationReason": null
  2571. },
  2572. {
  2573. "name": "optionGroups",
  2574. "description": "",
  2575. "args": [],
  2576. "type": {
  2577. "kind": "LIST",
  2578. "name": null,
  2579. "ofType": {
  2580. "kind": "OBJECT",
  2581. "name": "ProductOptionGroup",
  2582. "ofType": null
  2583. }
  2584. },
  2585. "isDeprecated": false,
  2586. "deprecationReason": null
  2587. },
  2588. {
  2589. "name": "translations",
  2590. "description": "",
  2591. "args": [],
  2592. "type": {
  2593. "kind": "LIST",
  2594. "name": null,
  2595. "ofType": {
  2596. "kind": "OBJECT",
  2597. "name": "ProductTranslation",
  2598. "ofType": null
  2599. }
  2600. },
  2601. "isDeprecated": false,
  2602. "deprecationReason": null
  2603. }
  2604. ],
  2605. "inputFields": null,
  2606. "interfaces": [
  2607. {
  2608. "kind": "INTERFACE",
  2609. "name": "Node",
  2610. "ofType": null
  2611. }
  2612. ],
  2613. "enumValues": null,
  2614. "possibleTypes": null
  2615. },
  2616. {
  2617. "kind": "OBJECT",
  2618. "name": "ProductVariant",
  2619. "description": "",
  2620. "fields": [
  2621. {
  2622. "name": "id",
  2623. "description": "",
  2624. "args": [],
  2625. "type": {
  2626. "kind": "NON_NULL",
  2627. "name": null,
  2628. "ofType": {
  2629. "kind": "SCALAR",
  2630. "name": "ID",
  2631. "ofType": null
  2632. }
  2633. },
  2634. "isDeprecated": false,
  2635. "deprecationReason": null
  2636. },
  2637. {
  2638. "name": "sku",
  2639. "description": "",
  2640. "args": [],
  2641. "type": {
  2642. "kind": "SCALAR",
  2643. "name": "String",
  2644. "ofType": null
  2645. },
  2646. "isDeprecated": false,
  2647. "deprecationReason": null
  2648. },
  2649. {
  2650. "name": "name",
  2651. "description": "",
  2652. "args": [],
  2653. "type": {
  2654. "kind": "SCALAR",
  2655. "name": "String",
  2656. "ofType": null
  2657. },
  2658. "isDeprecated": false,
  2659. "deprecationReason": null
  2660. },
  2661. {
  2662. "name": "image",
  2663. "description": "",
  2664. "args": [],
  2665. "type": {
  2666. "kind": "SCALAR",
  2667. "name": "String",
  2668. "ofType": null
  2669. },
  2670. "isDeprecated": false,
  2671. "deprecationReason": null
  2672. },
  2673. {
  2674. "name": "price",
  2675. "description": "",
  2676. "args": [],
  2677. "type": {
  2678. "kind": "SCALAR",
  2679. "name": "Int",
  2680. "ofType": null
  2681. },
  2682. "isDeprecated": false,
  2683. "deprecationReason": null
  2684. },
  2685. {
  2686. "name": "options",
  2687. "description": "",
  2688. "args": [],
  2689. "type": {
  2690. "kind": "LIST",
  2691. "name": null,
  2692. "ofType": {
  2693. "kind": "OBJECT",
  2694. "name": "ProductOption",
  2695. "ofType": null
  2696. }
  2697. },
  2698. "isDeprecated": false,
  2699. "deprecationReason": null
  2700. },
  2701. {
  2702. "name": "translations",
  2703. "description": "",
  2704. "args": [],
  2705. "type": {
  2706. "kind": "LIST",
  2707. "name": null,
  2708. "ofType": {
  2709. "kind": "OBJECT",
  2710. "name": "ProductVariantTranslation",
  2711. "ofType": null
  2712. }
  2713. },
  2714. "isDeprecated": false,
  2715. "deprecationReason": null
  2716. }
  2717. ],
  2718. "inputFields": null,
  2719. "interfaces": [
  2720. {
  2721. "kind": "INTERFACE",
  2722. "name": "Node",
  2723. "ofType": null
  2724. }
  2725. ],
  2726. "enumValues": null,
  2727. "possibleTypes": null
  2728. },
  2729. {
  2730. "kind": "OBJECT",
  2731. "name": "ProductVariantTranslation",
  2732. "description": "",
  2733. "fields": [
  2734. {
  2735. "name": "id",
  2736. "description": "",
  2737. "args": [],
  2738. "type": {
  2739. "kind": "NON_NULL",
  2740. "name": null,
  2741. "ofType": {
  2742. "kind": "SCALAR",
  2743. "name": "ID",
  2744. "ofType": null
  2745. }
  2746. },
  2747. "isDeprecated": false,
  2748. "deprecationReason": null
  2749. },
  2750. {
  2751. "name": "languageCode",
  2752. "description": "",
  2753. "args": [],
  2754. "type": {
  2755. "kind": "NON_NULL",
  2756. "name": null,
  2757. "ofType": {
  2758. "kind": "ENUM",
  2759. "name": "LanguageCode",
  2760. "ofType": null
  2761. }
  2762. },
  2763. "isDeprecated": false,
  2764. "deprecationReason": null
  2765. },
  2766. {
  2767. "name": "name",
  2768. "description": "",
  2769. "args": [],
  2770. "type": {
  2771. "kind": "NON_NULL",
  2772. "name": null,
  2773. "ofType": {
  2774. "kind": "SCALAR",
  2775. "name": "String",
  2776. "ofType": null
  2777. }
  2778. },
  2779. "isDeprecated": false,
  2780. "deprecationReason": null
  2781. }
  2782. ],
  2783. "inputFields": null,
  2784. "interfaces": [],
  2785. "enumValues": null,
  2786. "possibleTypes": null
  2787. },
  2788. {
  2789. "kind": "OBJECT",
  2790. "name": "ProductTranslation",
  2791. "description": "",
  2792. "fields": [
  2793. {
  2794. "name": "id",
  2795. "description": "",
  2796. "args": [],
  2797. "type": {
  2798. "kind": "NON_NULL",
  2799. "name": null,
  2800. "ofType": {
  2801. "kind": "SCALAR",
  2802. "name": "ID",
  2803. "ofType": null
  2804. }
  2805. },
  2806. "isDeprecated": false,
  2807. "deprecationReason": null
  2808. },
  2809. {
  2810. "name": "languageCode",
  2811. "description": "",
  2812. "args": [],
  2813. "type": {
  2814. "kind": "NON_NULL",
  2815. "name": null,
  2816. "ofType": {
  2817. "kind": "ENUM",
  2818. "name": "LanguageCode",
  2819. "ofType": null
  2820. }
  2821. },
  2822. "isDeprecated": false,
  2823. "deprecationReason": null
  2824. },
  2825. {
  2826. "name": "name",
  2827. "description": "",
  2828. "args": [],
  2829. "type": {
  2830. "kind": "NON_NULL",
  2831. "name": null,
  2832. "ofType": {
  2833. "kind": "SCALAR",
  2834. "name": "String",
  2835. "ofType": null
  2836. }
  2837. },
  2838. "isDeprecated": false,
  2839. "deprecationReason": null
  2840. },
  2841. {
  2842. "name": "slug",
  2843. "description": "",
  2844. "args": [],
  2845. "type": {
  2846. "kind": "NON_NULL",
  2847. "name": null,
  2848. "ofType": {
  2849. "kind": "SCALAR",
  2850. "name": "String",
  2851. "ofType": null
  2852. }
  2853. },
  2854. "isDeprecated": false,
  2855. "deprecationReason": null
  2856. },
  2857. {
  2858. "name": "description",
  2859. "description": "",
  2860. "args": [],
  2861. "type": {
  2862. "kind": "SCALAR",
  2863. "name": "String",
  2864. "ofType": null
  2865. },
  2866. "isDeprecated": false,
  2867. "deprecationReason": null
  2868. }
  2869. ],
  2870. "inputFields": null,
  2871. "interfaces": [],
  2872. "enumValues": null,
  2873. "possibleTypes": null
  2874. },
  2875. {
  2876. "kind": "OBJECT",
  2877. "name": "Mutation",
  2878. "description": "",
  2879. "fields": [
  2880. {
  2881. "name": "requestStarted",
  2882. "description": "",
  2883. "args": [],
  2884. "type": {
  2885. "kind": "OBJECT",
  2886. "name": "Network",
  2887. "ofType": null
  2888. },
  2889. "isDeprecated": false,
  2890. "deprecationReason": null
  2891. },
  2892. {
  2893. "name": "requestCompleted",
  2894. "description": "",
  2895. "args": [],
  2896. "type": {
  2897. "kind": "OBJECT",
  2898. "name": "Network",
  2899. "ofType": null
  2900. },
  2901. "isDeprecated": false,
  2902. "deprecationReason": null
  2903. },
  2904. {
  2905. "name": "createAdministrator",
  2906. "description": "Create a new Administrator",
  2907. "args": [
  2908. {
  2909. "name": "input",
  2910. "description": "",
  2911. "type": {
  2912. "kind": "NON_NULL",
  2913. "name": null,
  2914. "ofType": {
  2915. "kind": "INPUT_OBJECT",
  2916. "name": "CreateAdministratorInput",
  2917. "ofType": null
  2918. }
  2919. },
  2920. "defaultValue": null
  2921. }
  2922. ],
  2923. "type": {
  2924. "kind": "OBJECT",
  2925. "name": "Administrator",
  2926. "ofType": null
  2927. },
  2928. "isDeprecated": false,
  2929. "deprecationReason": null
  2930. },
  2931. {
  2932. "name": "createCustomer",
  2933. "description": "Create a new Customer. If a password is provided, a new User will also be created an linked to the Customer.",
  2934. "args": [
  2935. {
  2936. "name": "input",
  2937. "description": "",
  2938. "type": {
  2939. "kind": "NON_NULL",
  2940. "name": null,
  2941. "ofType": {
  2942. "kind": "INPUT_OBJECT",
  2943. "name": "CreateCustomerInput",
  2944. "ofType": null
  2945. }
  2946. },
  2947. "defaultValue": null
  2948. },
  2949. {
  2950. "name": "password",
  2951. "description": "",
  2952. "type": {
  2953. "kind": "SCALAR",
  2954. "name": "String",
  2955. "ofType": null
  2956. },
  2957. "defaultValue": null
  2958. }
  2959. ],
  2960. "type": {
  2961. "kind": "OBJECT",
  2962. "name": "Customer",
  2963. "ofType": null
  2964. },
  2965. "isDeprecated": false,
  2966. "deprecationReason": null
  2967. },
  2968. {
  2969. "name": "createCustomerAddress",
  2970. "description": "Create a new Address and associate it with the Customer specified by customerId",
  2971. "args": [
  2972. {
  2973. "name": "customerId",
  2974. "description": "",
  2975. "type": {
  2976. "kind": "SCALAR",
  2977. "name": "ID",
  2978. "ofType": null
  2979. },
  2980. "defaultValue": null
  2981. },
  2982. {
  2983. "name": "input",
  2984. "description": "",
  2985. "type": {
  2986. "kind": "INPUT_OBJECT",
  2987. "name": "CreateAddressInput",
  2988. "ofType": null
  2989. },
  2990. "defaultValue": null
  2991. }
  2992. ],
  2993. "type": {
  2994. "kind": "OBJECT",
  2995. "name": "Address",
  2996. "ofType": null
  2997. },
  2998. "isDeprecated": false,
  2999. "deprecationReason": null
  3000. },
  3001. {
  3002. "name": "createProductOptionGroup",
  3003. "description": "Create a new ProductOptionGroup",
  3004. "args": [
  3005. {
  3006. "name": "input",
  3007. "description": "",
  3008. "type": {
  3009. "kind": "INPUT_OBJECT",
  3010. "name": "CreateProductOptionGroupInput",
  3011. "ofType": null
  3012. },
  3013. "defaultValue": null
  3014. }
  3015. ],
  3016. "type": {
  3017. "kind": "OBJECT",
  3018. "name": "ProductOptionGroup",
  3019. "ofType": null
  3020. },
  3021. "isDeprecated": false,
  3022. "deprecationReason": null
  3023. },
  3024. {
  3025. "name": "updateProductOptionGroup",
  3026. "description": "Update an existing ProductOptionGroup",
  3027. "args": [
  3028. {
  3029. "name": "input",
  3030. "description": "",
  3031. "type": {
  3032. "kind": "INPUT_OBJECT",
  3033. "name": "UpdateProductOptionGroupInput",
  3034. "ofType": null
  3035. },
  3036. "defaultValue": null
  3037. }
  3038. ],
  3039. "type": {
  3040. "kind": "OBJECT",
  3041. "name": "ProductOptionGroup",
  3042. "ofType": null
  3043. },
  3044. "isDeprecated": false,
  3045. "deprecationReason": null
  3046. },
  3047. {
  3048. "name": "createProduct",
  3049. "description": "Create a new Product",
  3050. "args": [
  3051. {
  3052. "name": "input",
  3053. "description": "",
  3054. "type": {
  3055. "kind": "INPUT_OBJECT",
  3056. "name": "CreateProductInput",
  3057. "ofType": null
  3058. },
  3059. "defaultValue": null
  3060. }
  3061. ],
  3062. "type": {
  3063. "kind": "OBJECT",
  3064. "name": "Product",
  3065. "ofType": null
  3066. },
  3067. "isDeprecated": false,
  3068. "deprecationReason": null
  3069. },
  3070. {
  3071. "name": "updateProduct",
  3072. "description": "Update an existing Product",
  3073. "args": [
  3074. {
  3075. "name": "input",
  3076. "description": "",
  3077. "type": {
  3078. "kind": "INPUT_OBJECT",
  3079. "name": "UpdateProductInput",
  3080. "ofType": null
  3081. },
  3082. "defaultValue": null
  3083. }
  3084. ],
  3085. "type": {
  3086. "kind": "OBJECT",
  3087. "name": "Product",
  3088. "ofType": null
  3089. },
  3090. "isDeprecated": false,
  3091. "deprecationReason": null
  3092. }
  3093. ],
  3094. "inputFields": null,
  3095. "interfaces": [],
  3096. "enumValues": null,
  3097. "possibleTypes": null
  3098. },
  3099. {
  3100. "kind": "INPUT_OBJECT",
  3101. "name": "CreateAdministratorInput",
  3102. "description": "",
  3103. "fields": null,
  3104. "inputFields": [
  3105. {
  3106. "name": "firstName",
  3107. "description": "",
  3108. "type": {
  3109. "kind": "SCALAR",
  3110. "name": "String",
  3111. "ofType": null
  3112. },
  3113. "defaultValue": null
  3114. },
  3115. {
  3116. "name": "lastName",
  3117. "description": "",
  3118. "type": {
  3119. "kind": "SCALAR",
  3120. "name": "String",
  3121. "ofType": null
  3122. },
  3123. "defaultValue": null
  3124. },
  3125. {
  3126. "name": "emailAddress",
  3127. "description": "",
  3128. "type": {
  3129. "kind": "NON_NULL",
  3130. "name": null,
  3131. "ofType": {
  3132. "kind": "SCALAR",
  3133. "name": "String",
  3134. "ofType": null
  3135. }
  3136. },
  3137. "defaultValue": null
  3138. },
  3139. {
  3140. "name": "password",
  3141. "description": "",
  3142. "type": {
  3143. "kind": "NON_NULL",
  3144. "name": null,
  3145. "ofType": {
  3146. "kind": "SCALAR",
  3147. "name": "String",
  3148. "ofType": null
  3149. }
  3150. },
  3151. "defaultValue": null
  3152. }
  3153. ],
  3154. "interfaces": null,
  3155. "enumValues": null,
  3156. "possibleTypes": null
  3157. },
  3158. {
  3159. "kind": "INPUT_OBJECT",
  3160. "name": "CreateCustomerInput",
  3161. "description": "",
  3162. "fields": null,
  3163. "inputFields": [
  3164. {
  3165. "name": "firstName",
  3166. "description": "",
  3167. "type": {
  3168. "kind": "SCALAR",
  3169. "name": "String",
  3170. "ofType": null
  3171. },
  3172. "defaultValue": null
  3173. },
  3174. {
  3175. "name": "lastName",
  3176. "description": "",
  3177. "type": {
  3178. "kind": "SCALAR",
  3179. "name": "String",
  3180. "ofType": null
  3181. },
  3182. "defaultValue": null
  3183. },
  3184. {
  3185. "name": "phoneNumber",
  3186. "description": "",
  3187. "type": {
  3188. "kind": "SCALAR",
  3189. "name": "String",
  3190. "ofType": null
  3191. },
  3192. "defaultValue": null
  3193. },
  3194. {
  3195. "name": "emailAddress",
  3196. "description": "",
  3197. "type": {
  3198. "kind": "NON_NULL",
  3199. "name": null,
  3200. "ofType": {
  3201. "kind": "SCALAR",
  3202. "name": "String",
  3203. "ofType": null
  3204. }
  3205. },
  3206. "defaultValue": null
  3207. }
  3208. ],
  3209. "interfaces": null,
  3210. "enumValues": null,
  3211. "possibleTypes": null
  3212. },
  3213. {
  3214. "kind": "INPUT_OBJECT",
  3215. "name": "CreateAddressInput",
  3216. "description": "",
  3217. "fields": null,
  3218. "inputFields": [
  3219. {
  3220. "name": "fullName",
  3221. "description": "",
  3222. "type": {
  3223. "kind": "SCALAR",
  3224. "name": "String",
  3225. "ofType": null
  3226. },
  3227. "defaultValue": null
  3228. },
  3229. {
  3230. "name": "company",
  3231. "description": "",
  3232. "type": {
  3233. "kind": "SCALAR",
  3234. "name": "String",
  3235. "ofType": null
  3236. },
  3237. "defaultValue": null
  3238. },
  3239. {
  3240. "name": "streetLine1",
  3241. "description": "",
  3242. "type": {
  3243. "kind": "SCALAR",
  3244. "name": "String",
  3245. "ofType": null
  3246. },
  3247. "defaultValue": null
  3248. },
  3249. {
  3250. "name": "streetLine2",
  3251. "description": "",
  3252. "type": {
  3253. "kind": "SCALAR",
  3254. "name": "String",
  3255. "ofType": null
  3256. },
  3257. "defaultValue": null
  3258. },
  3259. {
  3260. "name": "city",
  3261. "description": "",
  3262. "type": {
  3263. "kind": "SCALAR",
  3264. "name": "String",
  3265. "ofType": null
  3266. },
  3267. "defaultValue": null
  3268. },
  3269. {
  3270. "name": "province",
  3271. "description": "",
  3272. "type": {
  3273. "kind": "SCALAR",
  3274. "name": "String",
  3275. "ofType": null
  3276. },
  3277. "defaultValue": null
  3278. },
  3279. {
  3280. "name": "postalCode",
  3281. "description": "",
  3282. "type": {
  3283. "kind": "SCALAR",
  3284. "name": "String",
  3285. "ofType": null
  3286. },
  3287. "defaultValue": null
  3288. },
  3289. {
  3290. "name": "country",
  3291. "description": "",
  3292. "type": {
  3293. "kind": "SCALAR",
  3294. "name": "String",
  3295. "ofType": null
  3296. },
  3297. "defaultValue": null
  3298. },
  3299. {
  3300. "name": "phoneNumber",
  3301. "description": "",
  3302. "type": {
  3303. "kind": "SCALAR",
  3304. "name": "String",
  3305. "ofType": null
  3306. },
  3307. "defaultValue": null
  3308. },
  3309. {
  3310. "name": "defaultShippingAddress",
  3311. "description": "",
  3312. "type": {
  3313. "kind": "SCALAR",
  3314. "name": "Boolean",
  3315. "ofType": null
  3316. },
  3317. "defaultValue": null
  3318. },
  3319. {
  3320. "name": "defaultBillingAddress",
  3321. "description": "",
  3322. "type": {
  3323. "kind": "SCALAR",
  3324. "name": "Boolean",
  3325. "ofType": null
  3326. },
  3327. "defaultValue": null
  3328. }
  3329. ],
  3330. "interfaces": null,
  3331. "enumValues": null,
  3332. "possibleTypes": null
  3333. },
  3334. {
  3335. "kind": "INPUT_OBJECT",
  3336. "name": "CreateProductOptionGroupInput",
  3337. "description": "",
  3338. "fields": null,
  3339. "inputFields": [
  3340. {
  3341. "name": "code",
  3342. "description": "",
  3343. "type": {
  3344. "kind": "NON_NULL",
  3345. "name": null,
  3346. "ofType": {
  3347. "kind": "SCALAR",
  3348. "name": "String",
  3349. "ofType": null
  3350. }
  3351. },
  3352. "defaultValue": null
  3353. },
  3354. {
  3355. "name": "translations",
  3356. "description": "",
  3357. "type": {
  3358. "kind": "NON_NULL",
  3359. "name": null,
  3360. "ofType": {
  3361. "kind": "LIST",
  3362. "name": null,
  3363. "ofType": {
  3364. "kind": "INPUT_OBJECT",
  3365. "name": "ProductOptionGroupTranslationInput",
  3366. "ofType": null
  3367. }
  3368. }
  3369. },
  3370. "defaultValue": null
  3371. },
  3372. {
  3373. "name": "options",
  3374. "description": "",
  3375. "type": {
  3376. "kind": "LIST",
  3377. "name": null,
  3378. "ofType": {
  3379. "kind": "INPUT_OBJECT",
  3380. "name": "CreateProductOptionInput",
  3381. "ofType": null
  3382. }
  3383. },
  3384. "defaultValue": null
  3385. }
  3386. ],
  3387. "interfaces": null,
  3388. "enumValues": null,
  3389. "possibleTypes": null
  3390. },
  3391. {
  3392. "kind": "INPUT_OBJECT",
  3393. "name": "ProductOptionGroupTranslationInput",
  3394. "description": "",
  3395. "fields": null,
  3396. "inputFields": [
  3397. {
  3398. "name": "id",
  3399. "description": "",
  3400. "type": {
  3401. "kind": "SCALAR",
  3402. "name": "ID",
  3403. "ofType": null
  3404. },
  3405. "defaultValue": null
  3406. },
  3407. {
  3408. "name": "languageCode",
  3409. "description": "",
  3410. "type": {
  3411. "kind": "NON_NULL",
  3412. "name": null,
  3413. "ofType": {
  3414. "kind": "ENUM",
  3415. "name": "LanguageCode",
  3416. "ofType": null
  3417. }
  3418. },
  3419. "defaultValue": null
  3420. },
  3421. {
  3422. "name": "name",
  3423. "description": "",
  3424. "type": {
  3425. "kind": "NON_NULL",
  3426. "name": null,
  3427. "ofType": {
  3428. "kind": "SCALAR",
  3429. "name": "String",
  3430. "ofType": null
  3431. }
  3432. },
  3433. "defaultValue": null
  3434. }
  3435. ],
  3436. "interfaces": null,
  3437. "enumValues": null,
  3438. "possibleTypes": null
  3439. },
  3440. {
  3441. "kind": "INPUT_OBJECT",
  3442. "name": "CreateProductOptionInput",
  3443. "description": "",
  3444. "fields": null,
  3445. "inputFields": [
  3446. {
  3447. "name": "code",
  3448. "description": "",
  3449. "type": {
  3450. "kind": "NON_NULL",
  3451. "name": null,
  3452. "ofType": {
  3453. "kind": "SCALAR",
  3454. "name": "String",
  3455. "ofType": null
  3456. }
  3457. },
  3458. "defaultValue": null
  3459. },
  3460. {
  3461. "name": "translations",
  3462. "description": "",
  3463. "type": {
  3464. "kind": "NON_NULL",
  3465. "name": null,
  3466. "ofType": {
  3467. "kind": "LIST",
  3468. "name": null,
  3469. "ofType": {
  3470. "kind": "INPUT_OBJECT",
  3471. "name": "ProductOptionGroupTranslationInput",
  3472. "ofType": null
  3473. }
  3474. }
  3475. },
  3476. "defaultValue": null
  3477. }
  3478. ],
  3479. "interfaces": null,
  3480. "enumValues": null,
  3481. "possibleTypes": null
  3482. },
  3483. {
  3484. "kind": "INPUT_OBJECT",
  3485. "name": "UpdateProductOptionGroupInput",
  3486. "description": "",
  3487. "fields": null,
  3488. "inputFields": [
  3489. {
  3490. "name": "id",
  3491. "description": "",
  3492. "type": {
  3493. "kind": "NON_NULL",
  3494. "name": null,
  3495. "ofType": {
  3496. "kind": "SCALAR",
  3497. "name": "ID",
  3498. "ofType": null
  3499. }
  3500. },
  3501. "defaultValue": null
  3502. },
  3503. {
  3504. "name": "code",
  3505. "description": "",
  3506. "type": {
  3507. "kind": "NON_NULL",
  3508. "name": null,
  3509. "ofType": {
  3510. "kind": "SCALAR",
  3511. "name": "String",
  3512. "ofType": null
  3513. }
  3514. },
  3515. "defaultValue": null
  3516. },
  3517. {
  3518. "name": "translations",
  3519. "description": "",
  3520. "type": {
  3521. "kind": "NON_NULL",
  3522. "name": null,
  3523. "ofType": {
  3524. "kind": "LIST",
  3525. "name": null,
  3526. "ofType": {
  3527. "kind": "INPUT_OBJECT",
  3528. "name": "ProductOptionGroupTranslationInput",
  3529. "ofType": null
  3530. }
  3531. }
  3532. },
  3533. "defaultValue": null
  3534. }
  3535. ],
  3536. "interfaces": null,
  3537. "enumValues": null,
  3538. "possibleTypes": null
  3539. },
  3540. {
  3541. "kind": "INPUT_OBJECT",
  3542. "name": "CreateProductInput",
  3543. "description": "",
  3544. "fields": null,
  3545. "inputFields": [
  3546. {
  3547. "name": "image",
  3548. "description": "",
  3549. "type": {
  3550. "kind": "SCALAR",
  3551. "name": "String",
  3552. "ofType": null
  3553. },
  3554. "defaultValue": null
  3555. },
  3556. {
  3557. "name": "translations",
  3558. "description": "",
  3559. "type": {
  3560. "kind": "NON_NULL",
  3561. "name": null,
  3562. "ofType": {
  3563. "kind": "LIST",
  3564. "name": null,
  3565. "ofType": {
  3566. "kind": "INPUT_OBJECT",
  3567. "name": "ProductTranslationInput",
  3568. "ofType": null
  3569. }
  3570. }
  3571. },
  3572. "defaultValue": null
  3573. },
  3574. {
  3575. "name": "variants",
  3576. "description": "",
  3577. "type": {
  3578. "kind": "LIST",
  3579. "name": null,
  3580. "ofType": {
  3581. "kind": "INPUT_OBJECT",
  3582. "name": "CreateProductVariantInput",
  3583. "ofType": null
  3584. }
  3585. },
  3586. "defaultValue": null
  3587. },
  3588. {
  3589. "name": "optionGroupCodes",
  3590. "description": "",
  3591. "type": {
  3592. "kind": "LIST",
  3593. "name": null,
  3594. "ofType": {
  3595. "kind": "SCALAR",
  3596. "name": "String",
  3597. "ofType": null
  3598. }
  3599. },
  3600. "defaultValue": null
  3601. }
  3602. ],
  3603. "interfaces": null,
  3604. "enumValues": null,
  3605. "possibleTypes": null
  3606. },
  3607. {
  3608. "kind": "INPUT_OBJECT",
  3609. "name": "ProductTranslationInput",
  3610. "description": "",
  3611. "fields": null,
  3612. "inputFields": [
  3613. {
  3614. "name": "id",
  3615. "description": "",
  3616. "type": {
  3617. "kind": "SCALAR",
  3618. "name": "ID",
  3619. "ofType": null
  3620. },
  3621. "defaultValue": null
  3622. },
  3623. {
  3624. "name": "languageCode",
  3625. "description": "",
  3626. "type": {
  3627. "kind": "NON_NULL",
  3628. "name": null,
  3629. "ofType": {
  3630. "kind": "ENUM",
  3631. "name": "LanguageCode",
  3632. "ofType": null
  3633. }
  3634. },
  3635. "defaultValue": null
  3636. },
  3637. {
  3638. "name": "name",
  3639. "description": "",
  3640. "type": {
  3641. "kind": "NON_NULL",
  3642. "name": null,
  3643. "ofType": {
  3644. "kind": "SCALAR",
  3645. "name": "String",
  3646. "ofType": null
  3647. }
  3648. },
  3649. "defaultValue": null
  3650. },
  3651. {
  3652. "name": "slug",
  3653. "description": "",
  3654. "type": {
  3655. "kind": "SCALAR",
  3656. "name": "String",
  3657. "ofType": null
  3658. },
  3659. "defaultValue": null
  3660. },
  3661. {
  3662. "name": "description",
  3663. "description": "",
  3664. "type": {
  3665. "kind": "SCALAR",
  3666. "name": "String",
  3667. "ofType": null
  3668. },
  3669. "defaultValue": null
  3670. }
  3671. ],
  3672. "interfaces": null,
  3673. "enumValues": null,
  3674. "possibleTypes": null
  3675. },
  3676. {
  3677. "kind": "INPUT_OBJECT",
  3678. "name": "CreateProductVariantInput",
  3679. "description": "",
  3680. "fields": null,
  3681. "inputFields": [
  3682. {
  3683. "name": "translations",
  3684. "description": "",
  3685. "type": {
  3686. "kind": "NON_NULL",
  3687. "name": null,
  3688. "ofType": {
  3689. "kind": "LIST",
  3690. "name": null,
  3691. "ofType": {
  3692. "kind": "INPUT_OBJECT",
  3693. "name": "CreateProductVariantTranslation",
  3694. "ofType": null
  3695. }
  3696. }
  3697. },
  3698. "defaultValue": null
  3699. },
  3700. {
  3701. "name": "sku",
  3702. "description": "",
  3703. "type": {
  3704. "kind": "NON_NULL",
  3705. "name": null,
  3706. "ofType": {
  3707. "kind": "SCALAR",
  3708. "name": "String",
  3709. "ofType": null
  3710. }
  3711. },
  3712. "defaultValue": null
  3713. },
  3714. {
  3715. "name": "image",
  3716. "description": "",
  3717. "type": {
  3718. "kind": "SCALAR",
  3719. "name": "String",
  3720. "ofType": null
  3721. },
  3722. "defaultValue": null
  3723. },
  3724. {
  3725. "name": "price",
  3726. "description": "",
  3727. "type": {
  3728. "kind": "NON_NULL",
  3729. "name": null,
  3730. "ofType": {
  3731. "kind": "SCALAR",
  3732. "name": "Int",
  3733. "ofType": null
  3734. }
  3735. },
  3736. "defaultValue": null
  3737. },
  3738. {
  3739. "name": "optionCodes",
  3740. "description": "",
  3741. "type": {
  3742. "kind": "LIST",
  3743. "name": null,
  3744. "ofType": {
  3745. "kind": "SCALAR",
  3746. "name": "String",
  3747. "ofType": null
  3748. }
  3749. },
  3750. "defaultValue": null
  3751. }
  3752. ],
  3753. "interfaces": null,
  3754. "enumValues": null,
  3755. "possibleTypes": null
  3756. },
  3757. {
  3758. "kind": "INPUT_OBJECT",
  3759. "name": "CreateProductVariantTranslation",
  3760. "description": "",
  3761. "fields": null,
  3762. "inputFields": [
  3763. {
  3764. "name": "languageCode",
  3765. "description": "",
  3766. "type": {
  3767. "kind": "NON_NULL",
  3768. "name": null,
  3769. "ofType": {
  3770. "kind": "ENUM",
  3771. "name": "LanguageCode",
  3772. "ofType": null
  3773. }
  3774. },
  3775. "defaultValue": null
  3776. },
  3777. {
  3778. "name": "name",
  3779. "description": "",
  3780. "type": {
  3781. "kind": "NON_NULL",
  3782. "name": null,
  3783. "ofType": {
  3784. "kind": "SCALAR",
  3785. "name": "String",
  3786. "ofType": null
  3787. }
  3788. },
  3789. "defaultValue": null
  3790. }
  3791. ],
  3792. "interfaces": null,
  3793. "enumValues": null,
  3794. "possibleTypes": null
  3795. },
  3796. {
  3797. "kind": "INPUT_OBJECT",
  3798. "name": "UpdateProductInput",
  3799. "description": "",
  3800. "fields": null,
  3801. "inputFields": [
  3802. {
  3803. "name": "id",
  3804. "description": "",
  3805. "type": {
  3806. "kind": "NON_NULL",
  3807. "name": null,
  3808. "ofType": {
  3809. "kind": "SCALAR",
  3810. "name": "ID",
  3811. "ofType": null
  3812. }
  3813. },
  3814. "defaultValue": null
  3815. },
  3816. {
  3817. "name": "image",
  3818. "description": "",
  3819. "type": {
  3820. "kind": "SCALAR",
  3821. "name": "String",
  3822. "ofType": null
  3823. },
  3824. "defaultValue": null
  3825. },
  3826. {
  3827. "name": "translations",
  3828. "description": "",
  3829. "type": {
  3830. "kind": "NON_NULL",
  3831. "name": null,
  3832. "ofType": {
  3833. "kind": "LIST",
  3834. "name": null,
  3835. "ofType": {
  3836. "kind": "INPUT_OBJECT",
  3837. "name": "ProductTranslationInput",
  3838. "ofType": null
  3839. }
  3840. }
  3841. },
  3842. "defaultValue": null
  3843. },
  3844. {
  3845. "name": "optionGroupCodes",
  3846. "description": "",
  3847. "type": {
  3848. "kind": "LIST",
  3849. "name": null,
  3850. "ofType": {
  3851. "kind": "SCALAR",
  3852. "name": "String",
  3853. "ofType": null
  3854. }
  3855. },
  3856. "defaultValue": null
  3857. }
  3858. ],
  3859. "interfaces": null,
  3860. "enumValues": null,
  3861. "possibleTypes": null
  3862. },
  3863. {
  3864. "kind": "OBJECT",
  3865. "name": "__Schema",
  3866. "description": "A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations.",
  3867. "fields": [
  3868. {
  3869. "name": "types",
  3870. "description": "A list of all types supported by this server.",
  3871. "args": [],
  3872. "type": {
  3873. "kind": "NON_NULL",
  3874. "name": null,
  3875. "ofType": {
  3876. "kind": "LIST",
  3877. "name": null,
  3878. "ofType": {
  3879. "kind": "NON_NULL",
  3880. "name": null,
  3881. "ofType": {
  3882. "kind": "OBJECT",
  3883. "name": "__Type",
  3884. "ofType": null
  3885. }
  3886. }
  3887. }
  3888. },
  3889. "isDeprecated": false,
  3890. "deprecationReason": null
  3891. },
  3892. {
  3893. "name": "queryType",
  3894. "description": "The type that query operations will be rooted at.",
  3895. "args": [],
  3896. "type": {
  3897. "kind": "NON_NULL",
  3898. "name": null,
  3899. "ofType": {
  3900. "kind": "OBJECT",
  3901. "name": "__Type",
  3902. "ofType": null
  3903. }
  3904. },
  3905. "isDeprecated": false,
  3906. "deprecationReason": null
  3907. },
  3908. {
  3909. "name": "mutationType",
  3910. "description": "If this server supports mutation, the type that mutation operations will be rooted at.",
  3911. "args": [],
  3912. "type": {
  3913. "kind": "OBJECT",
  3914. "name": "__Type",
  3915. "ofType": null
  3916. },
  3917. "isDeprecated": false,
  3918. "deprecationReason": null
  3919. },
  3920. {
  3921. "name": "subscriptionType",
  3922. "description": "If this server support subscription, the type that subscription operations will be rooted at.",
  3923. "args": [],
  3924. "type": {
  3925. "kind": "OBJECT",
  3926. "name": "__Type",
  3927. "ofType": null
  3928. },
  3929. "isDeprecated": false,
  3930. "deprecationReason": null
  3931. },
  3932. {
  3933. "name": "directives",
  3934. "description": "A list of all directives supported by this server.",
  3935. "args": [],
  3936. "type": {
  3937. "kind": "NON_NULL",
  3938. "name": null,
  3939. "ofType": {
  3940. "kind": "LIST",
  3941. "name": null,
  3942. "ofType": {
  3943. "kind": "NON_NULL",
  3944. "name": null,
  3945. "ofType": {
  3946. "kind": "OBJECT",
  3947. "name": "__Directive",
  3948. "ofType": null
  3949. }
  3950. }
  3951. }
  3952. },
  3953. "isDeprecated": false,
  3954. "deprecationReason": null
  3955. }
  3956. ],
  3957. "inputFields": null,
  3958. "interfaces": [],
  3959. "enumValues": null,
  3960. "possibleTypes": null
  3961. },
  3962. {
  3963. "kind": "OBJECT",
  3964. "name": "__Type",
  3965. "description": "The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name and description, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.",
  3966. "fields": [
  3967. {
  3968. "name": "kind",
  3969. "description": null,
  3970. "args": [],
  3971. "type": {
  3972. "kind": "NON_NULL",
  3973. "name": null,
  3974. "ofType": {
  3975. "kind": "ENUM",
  3976. "name": "__TypeKind",
  3977. "ofType": null
  3978. }
  3979. },
  3980. "isDeprecated": false,
  3981. "deprecationReason": null
  3982. },
  3983. {
  3984. "name": "name",
  3985. "description": null,
  3986. "args": [],
  3987. "type": {
  3988. "kind": "SCALAR",
  3989. "name": "String",
  3990. "ofType": null
  3991. },
  3992. "isDeprecated": false,
  3993. "deprecationReason": null
  3994. },
  3995. {
  3996. "name": "description",
  3997. "description": null,
  3998. "args": [],
  3999. "type": {
  4000. "kind": "SCALAR",
  4001. "name": "String",
  4002. "ofType": null
  4003. },
  4004. "isDeprecated": false,
  4005. "deprecationReason": null
  4006. },
  4007. {
  4008. "name": "fields",
  4009. "description": null,
  4010. "args": [
  4011. {
  4012. "name": "includeDeprecated",
  4013. "description": null,
  4014. "type": {
  4015. "kind": "SCALAR",
  4016. "name": "Boolean",
  4017. "ofType": null
  4018. },
  4019. "defaultValue": "false"
  4020. }
  4021. ],
  4022. "type": {
  4023. "kind": "LIST",
  4024. "name": null,
  4025. "ofType": {
  4026. "kind": "NON_NULL",
  4027. "name": null,
  4028. "ofType": {
  4029. "kind": "OBJECT",
  4030. "name": "__Field",
  4031. "ofType": null
  4032. }
  4033. }
  4034. },
  4035. "isDeprecated": false,
  4036. "deprecationReason": null
  4037. },
  4038. {
  4039. "name": "interfaces",
  4040. "description": null,
  4041. "args": [],
  4042. "type": {
  4043. "kind": "LIST",
  4044. "name": null,
  4045. "ofType": {
  4046. "kind": "NON_NULL",
  4047. "name": null,
  4048. "ofType": {
  4049. "kind": "OBJECT",
  4050. "name": "__Type",
  4051. "ofType": null
  4052. }
  4053. }
  4054. },
  4055. "isDeprecated": false,
  4056. "deprecationReason": null
  4057. },
  4058. {
  4059. "name": "possibleTypes",
  4060. "description": null,
  4061. "args": [],
  4062. "type": {
  4063. "kind": "LIST",
  4064. "name": null,
  4065. "ofType": {
  4066. "kind": "NON_NULL",
  4067. "name": null,
  4068. "ofType": {
  4069. "kind": "OBJECT",
  4070. "name": "__Type",
  4071. "ofType": null
  4072. }
  4073. }
  4074. },
  4075. "isDeprecated": false,
  4076. "deprecationReason": null
  4077. },
  4078. {
  4079. "name": "enumValues",
  4080. "description": null,
  4081. "args": [
  4082. {
  4083. "name": "includeDeprecated",
  4084. "description": null,
  4085. "type": {
  4086. "kind": "SCALAR",
  4087. "name": "Boolean",
  4088. "ofType": null
  4089. },
  4090. "defaultValue": "false"
  4091. }
  4092. ],
  4093. "type": {
  4094. "kind": "LIST",
  4095. "name": null,
  4096. "ofType": {
  4097. "kind": "NON_NULL",
  4098. "name": null,
  4099. "ofType": {
  4100. "kind": "OBJECT",
  4101. "name": "__EnumValue",
  4102. "ofType": null
  4103. }
  4104. }
  4105. },
  4106. "isDeprecated": false,
  4107. "deprecationReason": null
  4108. },
  4109. {
  4110. "name": "inputFields",
  4111. "description": null,
  4112. "args": [],
  4113. "type": {
  4114. "kind": "LIST",
  4115. "name": null,
  4116. "ofType": {
  4117. "kind": "NON_NULL",
  4118. "name": null,
  4119. "ofType": {
  4120. "kind": "OBJECT",
  4121. "name": "__InputValue",
  4122. "ofType": null
  4123. }
  4124. }
  4125. },
  4126. "isDeprecated": false,
  4127. "deprecationReason": null
  4128. },
  4129. {
  4130. "name": "ofType",
  4131. "description": null,
  4132. "args": [],
  4133. "type": {
  4134. "kind": "OBJECT",
  4135. "name": "__Type",
  4136. "ofType": null
  4137. },
  4138. "isDeprecated": false,
  4139. "deprecationReason": null
  4140. }
  4141. ],
  4142. "inputFields": null,
  4143. "interfaces": [],
  4144. "enumValues": null,
  4145. "possibleTypes": null
  4146. },
  4147. {
  4148. "kind": "ENUM",
  4149. "name": "__TypeKind",
  4150. "description": "An enum describing what kind of type a given `__Type` is.",
  4151. "fields": null,
  4152. "inputFields": null,
  4153. "interfaces": null,
  4154. "enumValues": [
  4155. {
  4156. "name": "SCALAR",
  4157. "description": "Indicates this type is a scalar.",
  4158. "isDeprecated": false,
  4159. "deprecationReason": null
  4160. },
  4161. {
  4162. "name": "OBJECT",
  4163. "description": "Indicates this type is an object. `fields` and `interfaces` are valid fields.",
  4164. "isDeprecated": false,
  4165. "deprecationReason": null
  4166. },
  4167. {
  4168. "name": "INTERFACE",
  4169. "description": "Indicates this type is an interface. `fields` and `possibleTypes` are valid fields.",
  4170. "isDeprecated": false,
  4171. "deprecationReason": null
  4172. },
  4173. {
  4174. "name": "UNION",
  4175. "description": "Indicates this type is a union. `possibleTypes` is a valid field.",
  4176. "isDeprecated": false,
  4177. "deprecationReason": null
  4178. },
  4179. {
  4180. "name": "ENUM",
  4181. "description": "Indicates this type is an enum. `enumValues` is a valid field.",
  4182. "isDeprecated": false,
  4183. "deprecationReason": null
  4184. },
  4185. {
  4186. "name": "INPUT_OBJECT",
  4187. "description": "Indicates this type is an input object. `inputFields` is a valid field.",
  4188. "isDeprecated": false,
  4189. "deprecationReason": null
  4190. },
  4191. {
  4192. "name": "LIST",
  4193. "description": "Indicates this type is a list. `ofType` is a valid field.",
  4194. "isDeprecated": false,
  4195. "deprecationReason": null
  4196. },
  4197. {
  4198. "name": "NON_NULL",
  4199. "description": "Indicates this type is a non-null. `ofType` is a valid field.",
  4200. "isDeprecated": false,
  4201. "deprecationReason": null
  4202. }
  4203. ],
  4204. "possibleTypes": null
  4205. },
  4206. {
  4207. "kind": "OBJECT",
  4208. "name": "__Field",
  4209. "description": "Object and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.",
  4210. "fields": [
  4211. {
  4212. "name": "name",
  4213. "description": null,
  4214. "args": [],
  4215. "type": {
  4216. "kind": "NON_NULL",
  4217. "name": null,
  4218. "ofType": {
  4219. "kind": "SCALAR",
  4220. "name": "String",
  4221. "ofType": null
  4222. }
  4223. },
  4224. "isDeprecated": false,
  4225. "deprecationReason": null
  4226. },
  4227. {
  4228. "name": "description",
  4229. "description": null,
  4230. "args": [],
  4231. "type": {
  4232. "kind": "SCALAR",
  4233. "name": "String",
  4234. "ofType": null
  4235. },
  4236. "isDeprecated": false,
  4237. "deprecationReason": null
  4238. },
  4239. {
  4240. "name": "args",
  4241. "description": null,
  4242. "args": [],
  4243. "type": {
  4244. "kind": "NON_NULL",
  4245. "name": null,
  4246. "ofType": {
  4247. "kind": "LIST",
  4248. "name": null,
  4249. "ofType": {
  4250. "kind": "NON_NULL",
  4251. "name": null,
  4252. "ofType": {
  4253. "kind": "OBJECT",
  4254. "name": "__InputValue",
  4255. "ofType": null
  4256. }
  4257. }
  4258. }
  4259. },
  4260. "isDeprecated": false,
  4261. "deprecationReason": null
  4262. },
  4263. {
  4264. "name": "type",
  4265. "description": null,
  4266. "args": [],
  4267. "type": {
  4268. "kind": "NON_NULL",
  4269. "name": null,
  4270. "ofType": {
  4271. "kind": "OBJECT",
  4272. "name": "__Type",
  4273. "ofType": null
  4274. }
  4275. },
  4276. "isDeprecated": false,
  4277. "deprecationReason": null
  4278. },
  4279. {
  4280. "name": "isDeprecated",
  4281. "description": null,
  4282. "args": [],
  4283. "type": {
  4284. "kind": "NON_NULL",
  4285. "name": null,
  4286. "ofType": {
  4287. "kind": "SCALAR",
  4288. "name": "Boolean",
  4289. "ofType": null
  4290. }
  4291. },
  4292. "isDeprecated": false,
  4293. "deprecationReason": null
  4294. },
  4295. {
  4296. "name": "deprecationReason",
  4297. "description": null,
  4298. "args": [],
  4299. "type": {
  4300. "kind": "SCALAR",
  4301. "name": "String",
  4302. "ofType": null
  4303. },
  4304. "isDeprecated": false,
  4305. "deprecationReason": null
  4306. }
  4307. ],
  4308. "inputFields": null,
  4309. "interfaces": [],
  4310. "enumValues": null,
  4311. "possibleTypes": null
  4312. },
  4313. {
  4314. "kind": "OBJECT",
  4315. "name": "__InputValue",
  4316. "description": "Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.",
  4317. "fields": [
  4318. {
  4319. "name": "name",
  4320. "description": null,
  4321. "args": [],
  4322. "type": {
  4323. "kind": "NON_NULL",
  4324. "name": null,
  4325. "ofType": {
  4326. "kind": "SCALAR",
  4327. "name": "String",
  4328. "ofType": null
  4329. }
  4330. },
  4331. "isDeprecated": false,
  4332. "deprecationReason": null
  4333. },
  4334. {
  4335. "name": "description",
  4336. "description": null,
  4337. "args": [],
  4338. "type": {
  4339. "kind": "SCALAR",
  4340. "name": "String",
  4341. "ofType": null
  4342. },
  4343. "isDeprecated": false,
  4344. "deprecationReason": null
  4345. },
  4346. {
  4347. "name": "type",
  4348. "description": null,
  4349. "args": [],
  4350. "type": {
  4351. "kind": "NON_NULL",
  4352. "name": null,
  4353. "ofType": {
  4354. "kind": "OBJECT",
  4355. "name": "__Type",
  4356. "ofType": null
  4357. }
  4358. },
  4359. "isDeprecated": false,
  4360. "deprecationReason": null
  4361. },
  4362. {
  4363. "name": "defaultValue",
  4364. "description": "A GraphQL-formatted string representing the default value for this input value.",
  4365. "args": [],
  4366. "type": {
  4367. "kind": "SCALAR",
  4368. "name": "String",
  4369. "ofType": null
  4370. },
  4371. "isDeprecated": false,
  4372. "deprecationReason": null
  4373. }
  4374. ],
  4375. "inputFields": null,
  4376. "interfaces": [],
  4377. "enumValues": null,
  4378. "possibleTypes": null
  4379. },
  4380. {
  4381. "kind": "OBJECT",
  4382. "name": "__EnumValue",
  4383. "description": "One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.",
  4384. "fields": [
  4385. {
  4386. "name": "name",
  4387. "description": null,
  4388. "args": [],
  4389. "type": {
  4390. "kind": "NON_NULL",
  4391. "name": null,
  4392. "ofType": {
  4393. "kind": "SCALAR",
  4394. "name": "String",
  4395. "ofType": null
  4396. }
  4397. },
  4398. "isDeprecated": false,
  4399. "deprecationReason": null
  4400. },
  4401. {
  4402. "name": "description",
  4403. "description": null,
  4404. "args": [],
  4405. "type": {
  4406. "kind": "SCALAR",
  4407. "name": "String",
  4408. "ofType": null
  4409. },
  4410. "isDeprecated": false,
  4411. "deprecationReason": null
  4412. },
  4413. {
  4414. "name": "isDeprecated",
  4415. "description": null,
  4416. "args": [],
  4417. "type": {
  4418. "kind": "NON_NULL",
  4419. "name": null,
  4420. "ofType": {
  4421. "kind": "SCALAR",
  4422. "name": "Boolean",
  4423. "ofType": null
  4424. }
  4425. },
  4426. "isDeprecated": false,
  4427. "deprecationReason": null
  4428. },
  4429. {
  4430. "name": "deprecationReason",
  4431. "description": null,
  4432. "args": [],
  4433. "type": {
  4434. "kind": "SCALAR",
  4435. "name": "String",
  4436. "ofType": null
  4437. },
  4438. "isDeprecated": false,
  4439. "deprecationReason": null
  4440. }
  4441. ],
  4442. "inputFields": null,
  4443. "interfaces": [],
  4444. "enumValues": null,
  4445. "possibleTypes": null
  4446. },
  4447. {
  4448. "kind": "OBJECT",
  4449. "name": "__Directive",
  4450. "description": "A Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document.\n\nIn some cases, you need to provide options to alter GraphQL's execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.",
  4451. "fields": [
  4452. {
  4453. "name": "name",
  4454. "description": null,
  4455. "args": [],
  4456. "type": {
  4457. "kind": "NON_NULL",
  4458. "name": null,
  4459. "ofType": {
  4460. "kind": "SCALAR",
  4461. "name": "String",
  4462. "ofType": null
  4463. }
  4464. },
  4465. "isDeprecated": false,
  4466. "deprecationReason": null
  4467. },
  4468. {
  4469. "name": "description",
  4470. "description": null,
  4471. "args": [],
  4472. "type": {
  4473. "kind": "SCALAR",
  4474. "name": "String",
  4475. "ofType": null
  4476. },
  4477. "isDeprecated": false,
  4478. "deprecationReason": null
  4479. },
  4480. {
  4481. "name": "locations",
  4482. "description": null,
  4483. "args": [],
  4484. "type": {
  4485. "kind": "NON_NULL",
  4486. "name": null,
  4487. "ofType": {
  4488. "kind": "LIST",
  4489. "name": null,
  4490. "ofType": {
  4491. "kind": "NON_NULL",
  4492. "name": null,
  4493. "ofType": {
  4494. "kind": "ENUM",
  4495. "name": "__DirectiveLocation",
  4496. "ofType": null
  4497. }
  4498. }
  4499. }
  4500. },
  4501. "isDeprecated": false,
  4502. "deprecationReason": null
  4503. },
  4504. {
  4505. "name": "args",
  4506. "description": null,
  4507. "args": [],
  4508. "type": {
  4509. "kind": "NON_NULL",
  4510. "name": null,
  4511. "ofType": {
  4512. "kind": "LIST",
  4513. "name": null,
  4514. "ofType": {
  4515. "kind": "NON_NULL",
  4516. "name": null,
  4517. "ofType": {
  4518. "kind": "OBJECT",
  4519. "name": "__InputValue",
  4520. "ofType": null
  4521. }
  4522. }
  4523. }
  4524. },
  4525. "isDeprecated": false,
  4526. "deprecationReason": null
  4527. },
  4528. {
  4529. "name": "onOperation",
  4530. "description": null,
  4531. "args": [],
  4532. "type": {
  4533. "kind": "NON_NULL",
  4534. "name": null,
  4535. "ofType": {
  4536. "kind": "SCALAR",
  4537. "name": "Boolean",
  4538. "ofType": null
  4539. }
  4540. },
  4541. "isDeprecated": true,
  4542. "deprecationReason": "Use `locations`."
  4543. },
  4544. {
  4545. "name": "onFragment",
  4546. "description": null,
  4547. "args": [],
  4548. "type": {
  4549. "kind": "NON_NULL",
  4550. "name": null,
  4551. "ofType": {
  4552. "kind": "SCALAR",
  4553. "name": "Boolean",
  4554. "ofType": null
  4555. }
  4556. },
  4557. "isDeprecated": true,
  4558. "deprecationReason": "Use `locations`."
  4559. },
  4560. {
  4561. "name": "onField",
  4562. "description": null,
  4563. "args": [],
  4564. "type": {
  4565. "kind": "NON_NULL",
  4566. "name": null,
  4567. "ofType": {
  4568. "kind": "SCALAR",
  4569. "name": "Boolean",
  4570. "ofType": null
  4571. }
  4572. },
  4573. "isDeprecated": true,
  4574. "deprecationReason": "Use `locations`."
  4575. }
  4576. ],
  4577. "inputFields": null,
  4578. "interfaces": [],
  4579. "enumValues": null,
  4580. "possibleTypes": null
  4581. },
  4582. {
  4583. "kind": "ENUM",
  4584. "name": "__DirectiveLocation",
  4585. "description": "A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.",
  4586. "fields": null,
  4587. "inputFields": null,
  4588. "interfaces": null,
  4589. "enumValues": [
  4590. {
  4591. "name": "QUERY",
  4592. "description": "Location adjacent to a query operation.",
  4593. "isDeprecated": false,
  4594. "deprecationReason": null
  4595. },
  4596. {
  4597. "name": "MUTATION",
  4598. "description": "Location adjacent to a mutation operation.",
  4599. "isDeprecated": false,
  4600. "deprecationReason": null
  4601. },
  4602. {
  4603. "name": "SUBSCRIPTION",
  4604. "description": "Location adjacent to a subscription operation.",
  4605. "isDeprecated": false,
  4606. "deprecationReason": null
  4607. },
  4608. {
  4609. "name": "FIELD",
  4610. "description": "Location adjacent to a field.",
  4611. "isDeprecated": false,
  4612. "deprecationReason": null
  4613. },
  4614. {
  4615. "name": "FRAGMENT_DEFINITION",
  4616. "description": "Location adjacent to a fragment definition.",
  4617. "isDeprecated": false,
  4618. "deprecationReason": null
  4619. },
  4620. {
  4621. "name": "FRAGMENT_SPREAD",
  4622. "description": "Location adjacent to a fragment spread.",
  4623. "isDeprecated": false,
  4624. "deprecationReason": null
  4625. },
  4626. {
  4627. "name": "INLINE_FRAGMENT",
  4628. "description": "Location adjacent to an inline fragment.",
  4629. "isDeprecated": false,
  4630. "deprecationReason": null
  4631. },
  4632. {
  4633. "name": "SCHEMA",
  4634. "description": "Location adjacent to a schema definition.",
  4635. "isDeprecated": false,
  4636. "deprecationReason": null
  4637. },
  4638. {
  4639. "name": "SCALAR",
  4640. "description": "Location adjacent to a scalar definition.",
  4641. "isDeprecated": false,
  4642. "deprecationReason": null
  4643. },
  4644. {
  4645. "name": "OBJECT",
  4646. "description": "Location adjacent to an object type definition.",
  4647. "isDeprecated": false,
  4648. "deprecationReason": null
  4649. },
  4650. {
  4651. "name": "FIELD_DEFINITION",
  4652. "description": "Location adjacent to a field definition.",
  4653. "isDeprecated": false,
  4654. "deprecationReason": null
  4655. },
  4656. {
  4657. "name": "ARGUMENT_DEFINITION",
  4658. "description": "Location adjacent to an argument definition.",
  4659. "isDeprecated": false,
  4660. "deprecationReason": null
  4661. },
  4662. {
  4663. "name": "INTERFACE",
  4664. "description": "Location adjacent to an interface definition.",
  4665. "isDeprecated": false,
  4666. "deprecationReason": null
  4667. },
  4668. {
  4669. "name": "UNION",
  4670. "description": "Location adjacent to a union definition.",
  4671. "isDeprecated": false,
  4672. "deprecationReason": null
  4673. },
  4674. {
  4675. "name": "ENUM",
  4676. "description": "Location adjacent to an enum definition.",
  4677. "isDeprecated": false,
  4678. "deprecationReason": null
  4679. },
  4680. {
  4681. "name": "ENUM_VALUE",
  4682. "description": "Location adjacent to an enum value definition.",
  4683. "isDeprecated": false,
  4684. "deprecationReason": null
  4685. },
  4686. {
  4687. "name": "INPUT_OBJECT",
  4688. "description": "Location adjacent to an input object type definition.",
  4689. "isDeprecated": false,
  4690. "deprecationReason": null
  4691. },
  4692. {
  4693. "name": "INPUT_FIELD_DEFINITION",
  4694. "description": "Location adjacent to an input object field definition.",
  4695. "isDeprecated": false,
  4696. "deprecationReason": null
  4697. }
  4698. ],
  4699. "possibleTypes": null
  4700. },
  4701. {
  4702. "kind": "INPUT_OBJECT",
  4703. "name": "ProductOptionTranslationInput",
  4704. "description": "",
  4705. "fields": null,
  4706. "inputFields": [
  4707. {
  4708. "name": "id",
  4709. "description": "",
  4710. "type": {
  4711. "kind": "SCALAR",
  4712. "name": "ID",
  4713. "ofType": null
  4714. },
  4715. "defaultValue": null
  4716. },
  4717. {
  4718. "name": "languageCode",
  4719. "description": "",
  4720. "type": {
  4721. "kind": "NON_NULL",
  4722. "name": null,
  4723. "ofType": {
  4724. "kind": "ENUM",
  4725. "name": "LanguageCode",
  4726. "ofType": null
  4727. }
  4728. },
  4729. "defaultValue": null
  4730. },
  4731. {
  4732. "name": "name",
  4733. "description": "",
  4734. "type": {
  4735. "kind": "NON_NULL",
  4736. "name": null,
  4737. "ofType": {
  4738. "kind": "SCALAR",
  4739. "name": "String",
  4740. "ofType": null
  4741. }
  4742. },
  4743. "defaultValue": null
  4744. }
  4745. ],
  4746. "interfaces": null,
  4747. "enumValues": null,
  4748. "possibleTypes": null
  4749. }
  4750. ],
  4751. "directives": [
  4752. {
  4753. "name": "skip",
  4754. "description": "Directs the executor to skip this field or fragment when the `if` argument is true.",
  4755. "locations": [
  4756. "FIELD",
  4757. "FRAGMENT_SPREAD",
  4758. "INLINE_FRAGMENT"
  4759. ],
  4760. "args": [
  4761. {
  4762. "name": "if",
  4763. "description": "Skipped when true.",
  4764. "type": {
  4765. "kind": "NON_NULL",
  4766. "name": null,
  4767. "ofType": {
  4768. "kind": "SCALAR",
  4769. "name": "Boolean",
  4770. "ofType": null
  4771. }
  4772. },
  4773. "defaultValue": null
  4774. }
  4775. ]
  4776. },
  4777. {
  4778. "name": "include",
  4779. "description": "Directs the executor to include this field or fragment only when the `if` argument is true.",
  4780. "locations": [
  4781. "FIELD",
  4782. "FRAGMENT_SPREAD",
  4783. "INLINE_FRAGMENT"
  4784. ],
  4785. "args": [
  4786. {
  4787. "name": "if",
  4788. "description": "Included when true.",
  4789. "type": {
  4790. "kind": "NON_NULL",
  4791. "name": null,
  4792. "ofType": {
  4793. "kind": "SCALAR",
  4794. "name": "Boolean",
  4795. "ofType": null
  4796. }
  4797. },
  4798. "defaultValue": null
  4799. }
  4800. ]
  4801. },
  4802. {
  4803. "name": "deprecated",
  4804. "description": "Marks an element of a GraphQL schema as no longer supported.",
  4805. "locations": [
  4806. "FIELD_DEFINITION",
  4807. "ENUM_VALUE"
  4808. ],
  4809. "args": [
  4810. {
  4811. "name": "reason",
  4812. "description": "Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted in [Markdown](https://daringfireball.net/projects/markdown/).",
  4813. "type": {
  4814. "kind": "SCALAR",
  4815. "name": "String",
  4816. "ofType": null
  4817. },
  4818. "defaultValue": "\"No longer supported\""
  4819. }
  4820. ]
  4821. }
  4822. ]
  4823. }
  4824. }