@cloudcart/dev-mcp 0.2.10 → 0.2.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/data/admin.json CHANGED
@@ -21569,6 +21569,45 @@
21569
21569
  "isDeprecated": false,
21570
21570
  "deprecationReason": null
21571
21571
  },
21572
+ {
21573
+ "name": "productsBulkCreate",
21574
+ "description": "Create up to ~10 000 products in a single GraphQL call. Async — returns a `BulkOperationJob` immediately\nwith the same shape as the other 23 `productsBulk*` mutations. Use `bulkOperationStatus(jobId)` to poll\nprogress and read final counts / errors.\n\nBacked by the existing JSON-import pipeline: payload is serialized to storage, a `JsonImport`\nrow is created, and the `JsonParser` job is dispatched on the `'import'` queue. Records are processed\nin chunks of 20 by the shared `Importer` worker — same code path that powers admin-panel JSON / CSV\nimports, so all features are supported: variants, images (via URL), category properties, tags, tabs,\nbrand-model linkage.\n\n**Replaces CSV / XML import for AI-agent use cases.** Instead of multi-step upload + column-mapping,\npass typed product objects directly.\n\n**Validation:** synchronous rules reject empty input and malformed fields. Per-product DB-level\nerrors (missing category id, duplicate sku, etc.) surface as `skippedIds` in the status payload.\n\n**Attribution:** the PAT-bound admin is captured at dispatch and re-bound inside the worker, so\n`Product.changeLog` entries are attributed to the caller — identical to the other `productsBulk*`\nmutations.\n\nExample:\n```graphql\nmutation {\n productsBulkCreate(products: [\n { name: \"Red T-Shirt\", price: 19.99, sku: \"TS-RED-001\",\n category_id: \"5\", images: [\"https://example.com/red.jpg\"],\n variants: [\n { v1: \"Red\", v2: \"M\", price: 19.99, quantity: 10 },\n { v1: \"Red\", v2: \"L\", price: 19.99, quantity: 5 }\n ],\n category_properties: [{ name: \"Material\", values: [\"Cotton\"] }],\n tags: [\"summer\", \"new\"] }\n ]) { jobId queuedCount message }\n}\n```",
21575
+ "args": [
21576
+ {
21577
+ "name": "products",
21578
+ "description": "Products to create. Hard cap at 10 000 per call — for larger imports, chunk client-side and dispatch multiple jobs.",
21579
+ "type": {
21580
+ "kind": "NON_NULL",
21581
+ "name": null,
21582
+ "ofType": {
21583
+ "kind": "LIST",
21584
+ "name": null,
21585
+ "ofType": {
21586
+ "kind": "NON_NULL",
21587
+ "name": null,
21588
+ "ofType": {
21589
+ "kind": "INPUT_OBJECT",
21590
+ "name": "JsonProductInput",
21591
+ "ofType": null
21592
+ }
21593
+ }
21594
+ }
21595
+ },
21596
+ "defaultValue": null
21597
+ }
21598
+ ],
21599
+ "type": {
21600
+ "kind": "NON_NULL",
21601
+ "name": null,
21602
+ "ofType": {
21603
+ "kind": "OBJECT",
21604
+ "name": "BulkOperationJob",
21605
+ "ofType": null
21606
+ }
21607
+ },
21608
+ "isDeprecated": false,
21609
+ "deprecationReason": null
21610
+ },
21572
21611
  {
21573
21612
  "name": "createCustomer",
21574
21613
  "description": "Create a new customer.",
@@ -56769,6 +56808,686 @@
56769
56808
  "enumValues": null,
56770
56809
  "possibleTypes": null
56771
56810
  },
56811
+ {
56812
+ "kind": "INPUT_OBJECT",
56813
+ "name": "JsonProductInput",
56814
+ "description": "One product to create via productsBulkCreate. Field semantics match the existing JSON import format (Modules\\Importer\\DataFormat\\Product) — all fields except name are optional.",
56815
+ "fields": null,
56816
+ "inputFields": [
56817
+ {
56818
+ "name": "name",
56819
+ "description": "Product name (required, max 191 chars).",
56820
+ "type": {
56821
+ "kind": "NON_NULL",
56822
+ "name": null,
56823
+ "ofType": {
56824
+ "kind": "SCALAR",
56825
+ "name": "String",
56826
+ "ofType": null
56827
+ }
56828
+ },
56829
+ "defaultValue": null
56830
+ },
56831
+ {
56832
+ "name": "url_handle",
56833
+ "description": "URL-friendly handle. Auto-generated from name when omitted.",
56834
+ "type": {
56835
+ "kind": "SCALAR",
56836
+ "name": "String",
56837
+ "ofType": null
56838
+ },
56839
+ "defaultValue": null
56840
+ },
56841
+ {
56842
+ "name": "sku",
56843
+ "description": "Stock Keeping Unit. Stored on a synthesized default variant when variants[] is omitted; read it back via variants[0].sku (CloudCart puts sku on variants, not products).",
56844
+ "type": {
56845
+ "kind": "SCALAR",
56846
+ "name": "String",
56847
+ "ofType": null
56848
+ },
56849
+ "defaultValue": null
56850
+ },
56851
+ {
56852
+ "name": "barcode",
56853
+ "description": "Product barcode. Stored on a synthesized default variant when variants[] is omitted; read it back via variants[0].barcode.",
56854
+ "type": {
56855
+ "kind": "SCALAR",
56856
+ "name": "String",
56857
+ "ofType": null
56858
+ },
56859
+ "defaultValue": null
56860
+ },
56861
+ {
56862
+ "name": "price",
56863
+ "description": "Price. Stored on a synthesized default variant when variants[] is omitted; read it back via variants[0].price or price_from/price_to on the product (CloudCart prices live on variants).",
56864
+ "type": {
56865
+ "kind": "SCALAR",
56866
+ "name": "Float",
56867
+ "ofType": null
56868
+ },
56869
+ "defaultValue": null
56870
+ },
56871
+ {
56872
+ "name": "quantity",
56873
+ "description": "Initial stock quantity. Stored on a synthesized default variant when variants[] is omitted; read it back via variants[0].quantity.",
56874
+ "type": {
56875
+ "kind": "SCALAR",
56876
+ "name": "Int",
56877
+ "ofType": null
56878
+ },
56879
+ "defaultValue": null
56880
+ },
56881
+ {
56882
+ "name": "short_description",
56883
+ "description": "Short description (rich text, max 65000 chars).",
56884
+ "type": {
56885
+ "kind": "SCALAR",
56886
+ "name": "String",
56887
+ "ofType": null
56888
+ },
56889
+ "defaultValue": null
56890
+ },
56891
+ {
56892
+ "name": "description",
56893
+ "description": "Long description (rich text, max 250000 chars).",
56894
+ "type": {
56895
+ "kind": "SCALAR",
56896
+ "name": "String",
56897
+ "ofType": null
56898
+ },
56899
+ "defaultValue": null
56900
+ },
56901
+ {
56902
+ "name": "description_title",
56903
+ "description": "Description title (heading rendered above description).",
56904
+ "type": {
56905
+ "kind": "SCALAR",
56906
+ "name": "String",
56907
+ "ofType": null
56908
+ },
56909
+ "defaultValue": null
56910
+ },
56911
+ {
56912
+ "name": "seo_title",
56913
+ "description": "SEO meta title.",
56914
+ "type": {
56915
+ "kind": "SCALAR",
56916
+ "name": "String",
56917
+ "ofType": null
56918
+ },
56919
+ "defaultValue": null
56920
+ },
56921
+ {
56922
+ "name": "seo_description",
56923
+ "description": "SEO meta description.",
56924
+ "type": {
56925
+ "kind": "SCALAR",
56926
+ "name": "String",
56927
+ "ofType": null
56928
+ },
56929
+ "defaultValue": null
56930
+ },
56931
+ {
56932
+ "name": "active",
56933
+ "description": "Active flag — `yes` (default) or `no`.",
56934
+ "type": {
56935
+ "kind": "ENUM",
56936
+ "name": "YesNo",
56937
+ "ofType": null
56938
+ },
56939
+ "defaultValue": null
56940
+ },
56941
+ {
56942
+ "name": "digital",
56943
+ "description": "Digital product flag — `yes` or `no` (default).",
56944
+ "type": {
56945
+ "kind": "ENUM",
56946
+ "name": "YesNo",
56947
+ "ofType": null
56948
+ },
56949
+ "defaultValue": null
56950
+ },
56951
+ {
56952
+ "name": "shipping",
56953
+ "description": "Requires shipping — `yes` (default) or `no`.",
56954
+ "type": {
56955
+ "kind": "ENUM",
56956
+ "name": "YesNo",
56957
+ "ofType": null
56958
+ },
56959
+ "defaultValue": null
56960
+ },
56961
+ {
56962
+ "name": "tracking",
56963
+ "description": "Stock tracking flag.",
56964
+ "type": {
56965
+ "kind": "SCALAR",
56966
+ "name": "String",
56967
+ "ofType": null
56968
+ },
56969
+ "defaultValue": null
56970
+ },
56971
+ {
56972
+ "name": "draft",
56973
+ "description": "Draft mode — `yes` or `no` (default).",
56974
+ "type": {
56975
+ "kind": "ENUM",
56976
+ "name": "YesNo",
56977
+ "ofType": null
56978
+ },
56979
+ "defaultValue": null
56980
+ },
56981
+ {
56982
+ "name": "is_hidden",
56983
+ "description": "Hide from storefront listings.",
56984
+ "type": {
56985
+ "kind": "SCALAR",
56986
+ "name": "Boolean",
56987
+ "ofType": null
56988
+ },
56989
+ "defaultValue": null
56990
+ },
56991
+ {
56992
+ "name": "sale",
56993
+ "description": "On-sale badge — `yes` or `no` (default).",
56994
+ "type": {
56995
+ "kind": "ENUM",
56996
+ "name": "YesNo",
56997
+ "ofType": null
56998
+ },
56999
+ "defaultValue": null
57000
+ },
57001
+ {
57002
+ "name": "new",
57003
+ "description": "New badge — `yes` or `no` (default).",
57004
+ "type": {
57005
+ "kind": "ENUM",
57006
+ "name": "YesNo",
57007
+ "ofType": null
57008
+ },
57009
+ "defaultValue": null
57010
+ },
57011
+ {
57012
+ "name": "featured",
57013
+ "description": "Featured badge.",
57014
+ "type": {
57015
+ "kind": "SCALAR",
57016
+ "name": "Boolean",
57017
+ "ofType": null
57018
+ },
57019
+ "defaultValue": null
57020
+ },
57021
+ {
57022
+ "name": "continue_selling",
57023
+ "description": "Continue selling when out of stock — `yes` or `no` (default).",
57024
+ "type": {
57025
+ "kind": "ENUM",
57026
+ "name": "YesNo",
57027
+ "ofType": null
57028
+ },
57029
+ "defaultValue": null
57030
+ },
57031
+ {
57032
+ "name": "threshold",
57033
+ "description": "Low stock threshold.",
57034
+ "type": {
57035
+ "kind": "SCALAR",
57036
+ "name": "Int",
57037
+ "ofType": null
57038
+ },
57039
+ "defaultValue": null
57040
+ },
57041
+ {
57042
+ "name": "minimum",
57043
+ "description": "Minimum order quantity.",
57044
+ "type": {
57045
+ "kind": "SCALAR",
57046
+ "name": "Float",
57047
+ "ofType": null
57048
+ },
57049
+ "defaultValue": null
57050
+ },
57051
+ {
57052
+ "name": "category_id",
57053
+ "description": "Primary category id.",
57054
+ "type": {
57055
+ "kind": "SCALAR",
57056
+ "name": "ID",
57057
+ "ofType": null
57058
+ },
57059
+ "defaultValue": null
57060
+ },
57061
+ {
57062
+ "name": "categories_ids",
57063
+ "description": "All category ids to assign (primary + additional).",
57064
+ "type": {
57065
+ "kind": "LIST",
57066
+ "name": null,
57067
+ "ofType": {
57068
+ "kind": "NON_NULL",
57069
+ "name": null,
57070
+ "ofType": {
57071
+ "kind": "SCALAR",
57072
+ "name": "ID",
57073
+ "ofType": null
57074
+ }
57075
+ }
57076
+ },
57077
+ "defaultValue": null
57078
+ },
57079
+ {
57080
+ "name": "vendor_id",
57081
+ "description": "Vendor id.",
57082
+ "type": {
57083
+ "kind": "SCALAR",
57084
+ "name": "ID",
57085
+ "ofType": null
57086
+ },
57087
+ "defaultValue": null
57088
+ },
57089
+ {
57090
+ "name": "status_id",
57091
+ "description": "In-stock status id (overrides default).",
57092
+ "type": {
57093
+ "kind": "SCALAR",
57094
+ "name": "ID",
57095
+ "ofType": null
57096
+ },
57097
+ "defaultValue": null
57098
+ },
57099
+ {
57100
+ "name": "out_of_stock_id",
57101
+ "description": "Out-of-stock status id (overrides default).",
57102
+ "type": {
57103
+ "kind": "SCALAR",
57104
+ "name": "ID",
57105
+ "ofType": null
57106
+ },
57107
+ "defaultValue": null
57108
+ },
57109
+ {
57110
+ "name": "p1",
57111
+ "description": "Parameter axis name #1 (when using variants — e.g. 'Color').",
57112
+ "type": {
57113
+ "kind": "SCALAR",
57114
+ "name": "String",
57115
+ "ofType": null
57116
+ },
57117
+ "defaultValue": null
57118
+ },
57119
+ {
57120
+ "name": "p2",
57121
+ "description": "Parameter axis name #2 (e.g. 'Size').",
57122
+ "type": {
57123
+ "kind": "SCALAR",
57124
+ "name": "String",
57125
+ "ofType": null
57126
+ },
57127
+ "defaultValue": null
57128
+ },
57129
+ {
57130
+ "name": "p3",
57131
+ "description": "Parameter axis name #3.",
57132
+ "type": {
57133
+ "kind": "SCALAR",
57134
+ "name": "String",
57135
+ "ofType": null
57136
+ },
57137
+ "defaultValue": null
57138
+ },
57139
+ {
57140
+ "name": "tags",
57141
+ "description": "Tag names. New tags are created on the fly.",
57142
+ "type": {
57143
+ "kind": "LIST",
57144
+ "name": null,
57145
+ "ofType": {
57146
+ "kind": "NON_NULL",
57147
+ "name": null,
57148
+ "ofType": {
57149
+ "kind": "SCALAR",
57150
+ "name": "String",
57151
+ "ofType": null
57152
+ }
57153
+ }
57154
+ },
57155
+ "defaultValue": null
57156
+ },
57157
+ {
57158
+ "name": "images",
57159
+ "description": "Image URLs to download and attach. First URL becomes primary. Order preserved.",
57160
+ "type": {
57161
+ "kind": "LIST",
57162
+ "name": null,
57163
+ "ofType": {
57164
+ "kind": "NON_NULL",
57165
+ "name": null,
57166
+ "ofType": {
57167
+ "kind": "SCALAR",
57168
+ "name": "String",
57169
+ "ofType": null
57170
+ }
57171
+ }
57172
+ },
57173
+ "defaultValue": null
57174
+ },
57175
+ {
57176
+ "name": "variants",
57177
+ "description": "Variants. When provided, default-variant fields (price/sku/quantity) are ignored.",
57178
+ "type": {
57179
+ "kind": "LIST",
57180
+ "name": null,
57181
+ "ofType": {
57182
+ "kind": "NON_NULL",
57183
+ "name": null,
57184
+ "ofType": {
57185
+ "kind": "INPUT_OBJECT",
57186
+ "name": "JsonProductVariantInput",
57187
+ "ofType": null
57188
+ }
57189
+ }
57190
+ },
57191
+ "defaultValue": null
57192
+ },
57193
+ {
57194
+ "name": "category_properties",
57195
+ "description": "Category-property assignments (e.g. 'Material' → ['Cotton']).",
57196
+ "type": {
57197
+ "kind": "LIST",
57198
+ "name": null,
57199
+ "ofType": {
57200
+ "kind": "NON_NULL",
57201
+ "name": null,
57202
+ "ofType": {
57203
+ "kind": "INPUT_OBJECT",
57204
+ "name": "JsonProductPropertyInput",
57205
+ "ofType": null
57206
+ }
57207
+ }
57208
+ },
57209
+ "defaultValue": null
57210
+ },
57211
+ {
57212
+ "name": "tabs",
57213
+ "description": "Product tabs.",
57214
+ "type": {
57215
+ "kind": "LIST",
57216
+ "name": null,
57217
+ "ofType": {
57218
+ "kind": "NON_NULL",
57219
+ "name": null,
57220
+ "ofType": {
57221
+ "kind": "INPUT_OBJECT",
57222
+ "name": "CreateProductTabInput",
57223
+ "ofType": null
57224
+ }
57225
+ }
57226
+ },
57227
+ "defaultValue": null
57228
+ },
57229
+ {
57230
+ "name": "brand_model",
57231
+ "description": "Brand model assignment.",
57232
+ "type": {
57233
+ "kind": "INPUT_OBJECT",
57234
+ "name": "JsonProductBrandModelInput",
57235
+ "ofType": null
57236
+ },
57237
+ "defaultValue": null
57238
+ },
57239
+ {
57240
+ "name": "sort_order",
57241
+ "description": "Manual sort order in listings.",
57242
+ "type": {
57243
+ "kind": "SCALAR",
57244
+ "name": "Int",
57245
+ "ofType": null
57246
+ },
57247
+ "defaultValue": null
57248
+ },
57249
+ {
57250
+ "name": "publish_date",
57251
+ "description": "Publish date — product becomes visible at this time.",
57252
+ "type": {
57253
+ "kind": "SCALAR",
57254
+ "name": "DateTime",
57255
+ "ofType": null
57256
+ },
57257
+ "defaultValue": null
57258
+ },
57259
+ {
57260
+ "name": "active_to",
57261
+ "description": "Deactivation date — product becomes inactive at this time.",
57262
+ "type": {
57263
+ "kind": "SCALAR",
57264
+ "name": "DateTime",
57265
+ "ofType": null
57266
+ },
57267
+ "defaultValue": null
57268
+ },
57269
+ {
57270
+ "name": "unit_id",
57271
+ "description": "Unit id (for grocery / measured products).",
57272
+ "type": {
57273
+ "kind": "SCALAR",
57274
+ "name": "ID",
57275
+ "ofType": null
57276
+ },
57277
+ "defaultValue": null
57278
+ },
57279
+ {
57280
+ "name": "type_digital",
57281
+ "description": "Digital product type (page or file) — only relevant when `digital: yes`.",
57282
+ "type": {
57283
+ "kind": "ENUM",
57284
+ "name": "DigitalType",
57285
+ "ofType": null
57286
+ },
57287
+ "defaultValue": null
57288
+ }
57289
+ ],
57290
+ "interfaces": null,
57291
+ "enumValues": null,
57292
+ "possibleTypes": null
57293
+ },
57294
+ {
57295
+ "kind": "INPUT_OBJECT",
57296
+ "name": "JsonProductVariantInput",
57297
+ "description": "Variant for a product created via productsBulkCreate. `v1`/`v2`/`v3` are the values along the corresponding `p1`/`p2`/`p3` parameter axes.",
57298
+ "fields": null,
57299
+ "inputFields": [
57300
+ {
57301
+ "name": "v1",
57302
+ "description": "Value along the p1 axis (e.g. 'Red').",
57303
+ "type": {
57304
+ "kind": "SCALAR",
57305
+ "name": "String",
57306
+ "ofType": null
57307
+ },
57308
+ "defaultValue": null
57309
+ },
57310
+ {
57311
+ "name": "v2",
57312
+ "description": "Value along the p2 axis (e.g. 'Large').",
57313
+ "type": {
57314
+ "kind": "SCALAR",
57315
+ "name": "String",
57316
+ "ofType": null
57317
+ },
57318
+ "defaultValue": null
57319
+ },
57320
+ {
57321
+ "name": "v3",
57322
+ "description": "Value along the p3 axis.",
57323
+ "type": {
57324
+ "kind": "SCALAR",
57325
+ "name": "String",
57326
+ "ofType": null
57327
+ },
57328
+ "defaultValue": null
57329
+ },
57330
+ {
57331
+ "name": "sku",
57332
+ "description": "Variant SKU.",
57333
+ "type": {
57334
+ "kind": "SCALAR",
57335
+ "name": "String",
57336
+ "ofType": null
57337
+ },
57338
+ "defaultValue": null
57339
+ },
57340
+ {
57341
+ "name": "barcode",
57342
+ "description": "Variant barcode.",
57343
+ "type": {
57344
+ "kind": "SCALAR",
57345
+ "name": "String",
57346
+ "ofType": null
57347
+ },
57348
+ "defaultValue": null
57349
+ },
57350
+ {
57351
+ "name": "price",
57352
+ "description": "Variant price.",
57353
+ "type": {
57354
+ "kind": "SCALAR",
57355
+ "name": "Float",
57356
+ "ofType": null
57357
+ },
57358
+ "defaultValue": null
57359
+ },
57360
+ {
57361
+ "name": "quantity",
57362
+ "description": "Variant initial quantity.",
57363
+ "type": {
57364
+ "kind": "SCALAR",
57365
+ "name": "Int",
57366
+ "ofType": null
57367
+ },
57368
+ "defaultValue": null
57369
+ },
57370
+ {
57371
+ "name": "weight",
57372
+ "description": "Variant weight (for shipping calculation).",
57373
+ "type": {
57374
+ "kind": "SCALAR",
57375
+ "name": "Float",
57376
+ "ofType": null
57377
+ },
57378
+ "defaultValue": null
57379
+ },
57380
+ {
57381
+ "name": "minimum",
57382
+ "description": "Variant minimum order quantity.",
57383
+ "type": {
57384
+ "kind": "SCALAR",
57385
+ "name": "Float",
57386
+ "ofType": null
57387
+ },
57388
+ "defaultValue": null
57389
+ },
57390
+ {
57391
+ "name": "image_urls",
57392
+ "description": "Variant-specific image URLs.",
57393
+ "type": {
57394
+ "kind": "LIST",
57395
+ "name": null,
57396
+ "ofType": {
57397
+ "kind": "NON_NULL",
57398
+ "name": null,
57399
+ "ofType": {
57400
+ "kind": "SCALAR",
57401
+ "name": "String",
57402
+ "ofType": null
57403
+ }
57404
+ }
57405
+ },
57406
+ "defaultValue": null
57407
+ }
57408
+ ],
57409
+ "interfaces": null,
57410
+ "enumValues": null,
57411
+ "possibleTypes": null
57412
+ },
57413
+ {
57414
+ "kind": "INPUT_OBJECT",
57415
+ "name": "JsonProductPropertyInput",
57416
+ "description": "Category-property assignment for a product. Property must exist on one of the product's categories — otherwise it is skipped.",
57417
+ "fields": null,
57418
+ "inputFields": [
57419
+ {
57420
+ "name": "name",
57421
+ "description": "Property name (must match an existing categoryProperty.name on the product's category tree).",
57422
+ "type": {
57423
+ "kind": "NON_NULL",
57424
+ "name": null,
57425
+ "ofType": {
57426
+ "kind": "SCALAR",
57427
+ "name": "String",
57428
+ "ofType": null
57429
+ }
57430
+ },
57431
+ "defaultValue": null
57432
+ },
57433
+ {
57434
+ "name": "values",
57435
+ "description": "One or more values. Multi-value properties accept arrays; single-value properties take the first element.",
57436
+ "type": {
57437
+ "kind": "NON_NULL",
57438
+ "name": null,
57439
+ "ofType": {
57440
+ "kind": "LIST",
57441
+ "name": null,
57442
+ "ofType": {
57443
+ "kind": "NON_NULL",
57444
+ "name": null,
57445
+ "ofType": {
57446
+ "kind": "SCALAR",
57447
+ "name": "String",
57448
+ "ofType": null
57449
+ }
57450
+ }
57451
+ }
57452
+ },
57453
+ "defaultValue": null
57454
+ }
57455
+ ],
57456
+ "interfaces": null,
57457
+ "enumValues": null,
57458
+ "possibleTypes": null
57459
+ },
57460
+ {
57461
+ "kind": "INPUT_OBJECT",
57462
+ "name": "JsonProductBrandModelInput",
57463
+ "description": "Brand model assignment — pins the product to a specific (brand, model) pair.",
57464
+ "fields": null,
57465
+ "inputFields": [
57466
+ {
57467
+ "name": "brand_id",
57468
+ "description": "Brand id.",
57469
+ "type": {
57470
+ "kind": "SCALAR",
57471
+ "name": "ID",
57472
+ "ofType": null
57473
+ },
57474
+ "defaultValue": null
57475
+ },
57476
+ {
57477
+ "name": "model_id",
57478
+ "description": "Model id.",
57479
+ "type": {
57480
+ "kind": "SCALAR",
57481
+ "name": "ID",
57482
+ "ofType": null
57483
+ },
57484
+ "defaultValue": null
57485
+ }
57486
+ ],
57487
+ "interfaces": null,
57488
+ "enumValues": null,
57489
+ "possibleTypes": null
57490
+ },
56772
57491
  {
56773
57492
  "kind": "OBJECT",
56774
57493
  "name": "UserError",