ruby_shopify_api 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.document +5 -0
- data/.github/CODEOWNERS +1 -0
- data/.github/ISSUE_TEMPLATE.md +36 -0
- data/.github/probots.yml +2 -0
- data/.github/workflows/build.yml +43 -0
- data/.gitignore +15 -0
- data/.rubocop.yml +28 -0
- data/.rubocop_todo.yml +75 -0
- data/CHANGELOG-OLD.md +501 -0
- data/CHANGELOG.md +5 -0
- data/CONTRIBUTING.md +8 -0
- data/CONTRIBUTORS +3 -0
- data/Gemfile +10 -0
- data/Gemfile.lock +151 -0
- data/Gemfile_ar41 +5 -0
- data/Gemfile_ar50 +5 -0
- data/Gemfile_ar51 +5 -0
- data/Gemfile_ar60 +5 -0
- data/Gemfile_ar_main +5 -0
- data/LICENSE +20 -0
- data/README.md +649 -0
- data/RELEASING +17 -0
- data/Rakefile +55 -0
- data/SECURITY.md +59 -0
- data/dev.yml +11 -0
- data/docker-compose.yml +13 -0
- data/docs/_config.yml +1 -0
- data/docs/_includes/footer.html +28 -0
- data/docs/_includes/head.html +28 -0
- data/docs/_layouts/index.html +57 -0
- data/docs/graphql.md +241 -0
- data/docs/index.md +639 -0
- data/lib/active_resource/connection_ext.rb +11 -0
- data/lib/active_resource/detailed_log_subscriber.rb +55 -0
- data/lib/active_resource/json_errors.rb +37 -0
- data/lib/shopify_api/api_access.rb +57 -0
- data/lib/shopify_api/api_version.rb +206 -0
- data/lib/shopify_api/connection.rb +36 -0
- data/lib/shopify_api/countable.rb +15 -0
- data/lib/shopify_api/disable_prefix_check.rb +31 -0
- data/lib/shopify_api/events.rb +8 -0
- data/lib/shopify_api/graphql/http_client.rb +22 -0
- data/lib/shopify_api/graphql/railtie.rb +17 -0
- data/lib/shopify_api/graphql/task.rake +100 -0
- data/lib/shopify_api/graphql.rb +103 -0
- data/lib/shopify_api/hmac_params.rb +33 -0
- data/lib/shopify_api/limits.rb +77 -0
- data/lib/shopify_api/message_enricher.rb +25 -0
- data/lib/shopify_api/meta.rb +14 -0
- data/lib/shopify_api/metafields.rb +21 -0
- data/lib/shopify_api/paginated_collection.rb +69 -0
- data/lib/shopify_api/pagination_link_headers.rb +34 -0
- data/lib/shopify_api/resources/abandoned_checkout.rb +7 -0
- data/lib/shopify_api/resources/access_scope.rb +10 -0
- data/lib/shopify_api/resources/access_token.rb +9 -0
- data/lib/shopify_api/resources/address.rb +5 -0
- data/lib/shopify_api/resources/announcement.rb +5 -0
- data/lib/shopify_api/resources/api_permission.rb +9 -0
- data/lib/shopify_api/resources/application_charge.rb +16 -0
- data/lib/shopify_api/resources/application_credit.rb +5 -0
- data/lib/shopify_api/resources/array_base.rb +13 -0
- data/lib/shopify_api/resources/article.rb +22 -0
- data/lib/shopify_api/resources/asset.rb +101 -0
- data/lib/shopify_api/resources/assigned_fulfillment_order.rb +16 -0
- data/lib/shopify_api/resources/base.rb +166 -0
- data/lib/shopify_api/resources/billing_address.rb +5 -0
- data/lib/shopify_api/resources/blog.rb +11 -0
- data/lib/shopify_api/resources/carrier_service.rb +5 -0
- data/lib/shopify_api/resources/cart.rb +5 -0
- data/lib/shopify_api/resources/checkout.rb +30 -0
- data/lib/shopify_api/resources/collect.rb +7 -0
- data/lib/shopify_api/resources/collection.rb +14 -0
- data/lib/shopify_api/resources/collection_listing.rb +19 -0
- data/lib/shopify_api/resources/collection_publication.rb +10 -0
- data/lib/shopify_api/resources/comment.rb +24 -0
- data/lib/shopify_api/resources/country.rb +5 -0
- data/lib/shopify_api/resources/currency.rb +6 -0
- data/lib/shopify_api/resources/custom_collection.rb +20 -0
- data/lib/shopify_api/resources/customer.rb +30 -0
- data/lib/shopify_api/resources/customer_group.rb +6 -0
- data/lib/shopify_api/resources/customer_invite.rb +5 -0
- data/lib/shopify_api/resources/customer_saved_search.rb +12 -0
- data/lib/shopify_api/resources/discount_code.rb +10 -0
- data/lib/shopify_api/resources/discount_code_batch.rb +34 -0
- data/lib/shopify_api/resources/draft_order.rb +15 -0
- data/lib/shopify_api/resources/draft_order_invoice.rb +5 -0
- data/lib/shopify_api/resources/event.rb +9 -0
- data/lib/shopify_api/resources/fulfillment.rb +56 -0
- data/lib/shopify_api/resources/fulfillment_event.rb +16 -0
- data/lib/shopify_api/resources/fulfillment_order.rb +151 -0
- data/lib/shopify_api/resources/fulfillment_order_locations_for_move.rb +5 -0
- data/lib/shopify_api/resources/fulfillment_request.rb +16 -0
- data/lib/shopify_api/resources/fulfillment_service.rb +5 -0
- data/lib/shopify_api/resources/fulfillment_v2.rb +21 -0
- data/lib/shopify_api/resources/gift_card.rb +8 -0
- data/lib/shopify_api/resources/image.rb +17 -0
- data/lib/shopify_api/resources/inventory_item.rb +6 -0
- data/lib/shopify_api/resources/inventory_level.rb +54 -0
- data/lib/shopify_api/resources/line_item.rb +15 -0
- data/lib/shopify_api/resources/location.rb +8 -0
- data/lib/shopify_api/resources/marketing_event.rb +11 -0
- data/lib/shopify_api/resources/metafield.rb +14 -0
- data/lib/shopify_api/resources/note_attribute.rb +5 -0
- data/lib/shopify_api/resources/option.rb +5 -0
- data/lib/shopify_api/resources/order.rb +44 -0
- data/lib/shopify_api/resources/order_risk.rb +9 -0
- data/lib/shopify_api/resources/page.rb +7 -0
- data/lib/shopify_api/resources/payment.rb +7 -0
- data/lib/shopify_api/resources/payment_details.rb +5 -0
- data/lib/shopify_api/resources/ping.rb +3 -0
- data/lib/shopify_api/resources/policy.rb +8 -0
- data/lib/shopify_api/resources/price_rule.rb +8 -0
- data/lib/shopify_api/resources/product.rb +59 -0
- data/lib/shopify_api/resources/product_listing.rb +17 -0
- data/lib/shopify_api/resources/product_publication.rb +10 -0
- data/lib/shopify_api/resources/province.rb +6 -0
- data/lib/shopify_api/resources/publication.rb +5 -0
- data/lib/shopify_api/resources/receipt.rb +5 -0
- data/lib/shopify_api/resources/recurring_application_charge.rb +34 -0
- data/lib/shopify_api/resources/redirect.rb +5 -0
- data/lib/shopify_api/resources/refund.rb +15 -0
- data/lib/shopify_api/resources/report.rb +5 -0
- data/lib/shopify_api/resources/resource_feedback.rb +19 -0
- data/lib/shopify_api/resources/rule.rb +5 -0
- data/lib/shopify_api/resources/script_tag.rb +5 -0
- data/lib/shopify_api/resources/shipping_address.rb +5 -0
- data/lib/shopify_api/resources/shipping_line.rb +5 -0
- data/lib/shopify_api/resources/shipping_rate.rb +7 -0
- data/lib/shopify_api/resources/shipping_zone.rb +5 -0
- data/lib/shopify_api/resources/shop.rb +26 -0
- data/lib/shopify_api/resources/smart_collection.rb +15 -0
- data/lib/shopify_api/resources/storefront_access_token.rb +5 -0
- data/lib/shopify_api/resources/tax_line.rb +5 -0
- data/lib/shopify_api/resources/tax_service.rb +5 -0
- data/lib/shopify_api/resources/tender_transaction.rb +6 -0
- data/lib/shopify_api/resources/theme.rb +5 -0
- data/lib/shopify_api/resources/transaction.rb +6 -0
- data/lib/shopify_api/resources/usage_charge.rb +6 -0
- data/lib/shopify_api/resources/user.rb +5 -0
- data/lib/shopify_api/resources/variant.rb +43 -0
- data/lib/shopify_api/resources/webhook.rb +5 -0
- data/lib/shopify_api/resources.rb +4 -0
- data/lib/shopify_api/session.rb +203 -0
- data/lib/shopify_api/version.rb +4 -0
- data/lib/shopify_api.rb +45 -0
- data/lib/verify_docs.rb +8 -0
- data/service.yml +2 -0
- data/shipit.rubygems.yml +1 -0
- data/shopify_api.gemspec +47 -0
- data/test/abandoned_checkouts_test.rb +29 -0
- data/test/access_scope_test.rb +23 -0
- data/test/access_token_test.rb +20 -0
- data/test/active_resource/json_errors_test.rb +19 -0
- data/test/api_access_test.rb +153 -0
- data/test/api_permission_test.rb +9 -0
- data/test/api_version_test.rb +157 -0
- data/test/application_charge_test.rb +82 -0
- data/test/application_credit_test.rb +36 -0
- data/test/article_test.rb +72 -0
- data/test/asset_test.rb +26 -0
- data/test/assigned_fulfillment_order_test.rb +78 -0
- data/test/base_test.rb +213 -0
- data/test/blog_test.rb +9 -0
- data/test/carrier_service_test.rb +18 -0
- data/test/cart_test.rb +14 -0
- data/test/checkouts_test.rb +77 -0
- data/test/collect_test.rb +10 -0
- data/test/collection_listing_test.rb +84 -0
- data/test/collection_publication_test.rb +40 -0
- data/test/collection_test.rb +50 -0
- data/test/countable_test.rb +14 -0
- data/test/currency_test.rb +21 -0
- data/test/custom_collection_test.rb +10 -0
- data/test/customer_saved_search_test.rb +37 -0
- data/test/customer_test.rb +58 -0
- data/test/detailed_log_subscriber_test.rb +143 -0
- data/test/discount_code_batch_test.rb +41 -0
- data/test/discount_code_test.rb +59 -0
- data/test/draft_order_test.rb +167 -0
- data/test/fixtures/abandoned_checkout.json +184 -0
- data/test/fixtures/abandoned_checkouts.json +186 -0
- data/test/fixtures/access_scopes.json +10 -0
- data/test/fixtures/access_token_delegate.json +4 -0
- data/test/fixtures/api_versions.json +38 -0
- data/test/fixtures/apis.json +42 -0
- data/test/fixtures/application_charge.json +16 -0
- data/test/fixtures/application_charges.json +57 -0
- data/test/fixtures/application_credit.json +12 -0
- data/test/fixtures/application_credits.json +24 -0
- data/test/fixtures/article.json +15 -0
- data/test/fixtures/articles.json +39 -0
- data/test/fixtures/asset.json +9 -0
- data/test/fixtures/assets.json +136 -0
- data/test/fixtures/assigned_fulfillment_orders.json +80 -0
- data/test/fixtures/authors.json +1 -0
- data/test/fixtures/blog.json +13 -0
- data/test/fixtures/blogs.json +13 -0
- data/test/fixtures/carrier_service.json +9 -0
- data/test/fixtures/carts.json +43 -0
- data/test/fixtures/checkout.json +160 -0
- data/test/fixtures/checkouts.json +162 -0
- data/test/fixtures/collect.json +12 -0
- data/test/fixtures/collection.json +17 -0
- data/test/fixtures/collection_listing.json +11 -0
- data/test/fixtures/collection_listing_product_ids.json +1 -0
- data/test/fixtures/collection_listing_product_ids2.json +1 -0
- data/test/fixtures/collection_listings.json +13 -0
- data/test/fixtures/collection_products.json +47 -0
- data/test/fixtures/collection_publication.json +11 -0
- data/test/fixtures/collection_publications.json +13 -0
- data/test/fixtures/currencies.json +25 -0
- data/test/fixtures/custom_collection.json +17 -0
- data/test/fixtures/customer_invite.json +9 -0
- data/test/fixtures/customer_saved_search.json +9 -0
- data/test/fixtures/customer_saved_search_customers.json +60 -0
- data/test/fixtures/customers.json +59 -0
- data/test/fixtures/customers_account_activation_url.json +3 -0
- data/test/fixtures/customers_search.json +60 -0
- data/test/fixtures/discount_code.json +10 -0
- data/test/fixtures/discount_code_batch.json +14 -0
- data/test/fixtures/discount_code_batch_discount_codes.json +21 -0
- data/test/fixtures/discount_codes.json +12 -0
- data/test/fixtures/draft_order.json +159 -0
- data/test/fixtures/draft_order_completed.json +159 -0
- data/test/fixtures/draft_order_invoice.json +9 -0
- data/test/fixtures/draft_orders.json +161 -0
- data/test/fixtures/engagement.json +15 -0
- data/test/fixtures/events.json +31 -0
- data/test/fixtures/fulfillment.json +49 -0
- data/test/fixtures/fulfillment_event.json +12 -0
- data/test/fixtures/fulfillment_order.json +39 -0
- data/test/fixtures/fulfillment_order_locations_for_move.json +18 -0
- data/test/fixtures/fulfillment_orders.json +80 -0
- data/test/fixtures/fulfillment_request.json +28 -0
- data/test/fixtures/fulfillment_service.json +10 -0
- data/test/fixtures/fulfillments.json +53 -0
- data/test/fixtures/gift_card.json +20 -0
- data/test/fixtures/gift_card_disabled.json +20 -0
- data/test/fixtures/graphql/2019-10.json +1083 -0
- data/test/fixtures/graphql/dummy_schema.rb +16 -0
- data/test/fixtures/graphql/unstable.json +1083 -0
- data/test/fixtures/image.json +10 -0
- data/test/fixtures/images.json +20 -0
- data/test/fixtures/inventory_level.json +7 -0
- data/test/fixtures/inventory_levels.json +24 -0
- data/test/fixtures/marketing_event.json +28 -0
- data/test/fixtures/marketing_events.json +54 -0
- data/test/fixtures/metafield.json +12 -0
- data/test/fixtures/metafields.json +34 -0
- data/test/fixtures/order.json +297 -0
- data/test/fixtures/order_risk.json +14 -0
- data/test/fixtures/order_risks.json +28 -0
- data/test/fixtures/order_with_properties.json +373 -0
- data/test/fixtures/orders.json +299 -0
- data/test/fixtures/payment.json +7 -0
- data/test/fixtures/payments.json +9 -0
- data/test/fixtures/ping/conversation.json +1 -0
- data/test/fixtures/ping/failed_delivery_confirmation.json +1 -0
- data/test/fixtures/ping/message.json +1 -0
- data/test/fixtures/ping/successful_delivery_confirmation.json +1 -0
- data/test/fixtures/policies.json +8 -0
- data/test/fixtures/price_rule.json +27 -0
- data/test/fixtures/price_rules.json +28 -0
- data/test/fixtures/product.json +116 -0
- data/test/fixtures/product_listing.json +86 -0
- data/test/fixtures/product_listing_product_ids.json +1 -0
- data/test/fixtures/product_listing_product_ids2.json +1 -0
- data/test/fixtures/product_listings.json +174 -0
- data/test/fixtures/product_publication.json +11 -0
- data/test/fixtures/product_publications.json +13 -0
- data/test/fixtures/publications.json +9 -0
- data/test/fixtures/recurring_application_charge.json +22 -0
- data/test/fixtures/recurring_application_charge_adjustment.json +5 -0
- data/test/fixtures/recurring_application_charges.json +106 -0
- data/test/fixtures/redirect.json +7 -0
- data/test/fixtures/refund.json +112 -0
- data/test/fixtures/report.json +9 -0
- data/test/fixtures/reports.json +11 -0
- data/test/fixtures/script_tag.json +10 -0
- data/test/fixtures/script_tags.json +18 -0
- data/test/fixtures/shipping_rates.json +12 -0
- data/test/fixtures/shipping_zones.json +315 -0
- data/test/fixtures/shop.json +26 -0
- data/test/fixtures/smart_collection.json +21 -0
- data/test/fixtures/smart_collection_products.json +155 -0
- data/test/fixtures/storefront_access_token.json +9 -0
- data/test/fixtures/storefront_access_tokens.json +18 -0
- data/test/fixtures/tags.json +1 -0
- data/test/fixtures/tax_service.json +9 -0
- data/test/fixtures/tender_transactions.json +52 -0
- data/test/fixtures/transaction.json +29 -0
- data/test/fixtures/usage_charge.json +11 -0
- data/test/fixtures/usage_charges.json +23 -0
- data/test/fixtures/user.json +21 -0
- data/test/fixtures/users.json +42 -0
- data/test/fixtures/variant.json +23 -0
- data/test/fixtures/variants.json +88 -0
- data/test/fixtures/webhook.json +10 -0
- data/test/fixtures/webhooks.json +18 -0
- data/test/fulfillment_event_test.rb +74 -0
- data/test/fulfillment_order_test.rb +530 -0
- data/test/fulfillment_order_test_helper.rb +8 -0
- data/test/fulfillment_request_test.rb +35 -0
- data/test/fulfillment_service_test.rb +18 -0
- data/test/fulfillment_test.rb +239 -0
- data/test/fulfillment_v2_test.rb +66 -0
- data/test/gift_card_test.rb +24 -0
- data/test/graphql/http_client_test.rb +26 -0
- data/test/graphql_test.rb +190 -0
- data/test/hmac_params_test.rb +25 -0
- data/test/image_test.rb +41 -0
- data/test/inventory_level_test.rb +68 -0
- data/test/lib/webmock_extensions/last_request.rb +16 -0
- data/test/limits_test.rb +39 -0
- data/test/location_test.rb +15 -0
- data/test/marketing_event_test.rb +68 -0
- data/test/message_enricher_test.rb +45 -0
- data/test/meta_test.rb +47 -0
- data/test/metafield_test.rb +56 -0
- data/test/order_risk_test.rb +47 -0
- data/test/order_test.rb +140 -0
- data/test/pagination_test.rb +290 -0
- data/test/payment_test.rb +19 -0
- data/test/policy_test.rb +20 -0
- data/test/price_rule_test.rb +70 -0
- data/test/product_listing_test.rb +97 -0
- data/test/product_publication_test.rb +40 -0
- data/test/product_test.rb +111 -0
- data/test/publication_test.rb +12 -0
- data/test/recurring_application_charge_test.rb +204 -0
- data/test/redirect_test.rb +10 -0
- data/test/refund_test.rb +37 -0
- data/test/report_test.rb +37 -0
- data/test/resource_feedback_test.rb +43 -0
- data/test/script_tag_test.rb +31 -0
- data/test/session_test.rb +640 -0
- data/test/shipping_rate_test.rb +17 -0
- data/test/shipping_zone_test.rb +11 -0
- data/test/shop_test.rb +82 -0
- data/test/smart_collection_test.rb +11 -0
- data/test/storefront_access_token_test.rb +30 -0
- data/test/tax_service_test.rb +12 -0
- data/test/tender_transaction_test.rb +18 -0
- data/test/test_helper.rb +126 -0
- data/test/transaction_test.rb +18 -0
- data/test/usage_charge_test.rb +25 -0
- data/test/user_test.rb +18 -0
- data/test/variant_test.rb +73 -0
- data/test/webhook_test.rb +24 -0
- metadata +555 -0
@@ -0,0 +1,1083 @@
|
|
1
|
+
{
|
2
|
+
"data": {
|
3
|
+
"__schema": {
|
4
|
+
"queryType": {
|
5
|
+
"name": "QueryRoot"
|
6
|
+
},
|
7
|
+
"mutationType": null,
|
8
|
+
"subscriptionType": null,
|
9
|
+
"types": [
|
10
|
+
{
|
11
|
+
"kind": "SCALAR",
|
12
|
+
"name": "Boolean",
|
13
|
+
"description": "Represents `true` or `false` values.",
|
14
|
+
"fields": null,
|
15
|
+
"inputFields": null,
|
16
|
+
"interfaces": null,
|
17
|
+
"enumValues": null,
|
18
|
+
"possibleTypes": null
|
19
|
+
},
|
20
|
+
{
|
21
|
+
"kind": "OBJECT",
|
22
|
+
"name": "Product",
|
23
|
+
"description": null,
|
24
|
+
"fields": [
|
25
|
+
{
|
26
|
+
"name": "name",
|
27
|
+
"description": null,
|
28
|
+
"args": [
|
29
|
+
|
30
|
+
],
|
31
|
+
"type": {
|
32
|
+
"kind": "NON_NULL",
|
33
|
+
"name": null,
|
34
|
+
"ofType": {
|
35
|
+
"kind": "SCALAR",
|
36
|
+
"name": "String",
|
37
|
+
"ofType": null
|
38
|
+
}
|
39
|
+
},
|
40
|
+
"isDeprecated": false,
|
41
|
+
"deprecationReason": null
|
42
|
+
}
|
43
|
+
],
|
44
|
+
"inputFields": null,
|
45
|
+
"interfaces": [
|
46
|
+
|
47
|
+
],
|
48
|
+
"enumValues": null,
|
49
|
+
"possibleTypes": null
|
50
|
+
},
|
51
|
+
{
|
52
|
+
"kind": "OBJECT",
|
53
|
+
"name": "QueryRoot",
|
54
|
+
"description": null,
|
55
|
+
"fields": [
|
56
|
+
{
|
57
|
+
"name": "product",
|
58
|
+
"description": null,
|
59
|
+
"args": [
|
60
|
+
|
61
|
+
],
|
62
|
+
"type": {
|
63
|
+
"kind": "NON_NULL",
|
64
|
+
"name": null,
|
65
|
+
"ofType": {
|
66
|
+
"kind": "OBJECT",
|
67
|
+
"name": "Product",
|
68
|
+
"ofType": null
|
69
|
+
}
|
70
|
+
},
|
71
|
+
"isDeprecated": false,
|
72
|
+
"deprecationReason": null
|
73
|
+
}
|
74
|
+
],
|
75
|
+
"inputFields": null,
|
76
|
+
"interfaces": [
|
77
|
+
|
78
|
+
],
|
79
|
+
"enumValues": null,
|
80
|
+
"possibleTypes": null
|
81
|
+
},
|
82
|
+
{
|
83
|
+
"kind": "SCALAR",
|
84
|
+
"name": "String",
|
85
|
+
"description": "Represents textual data as UTF-8 character sequences. This type is most often used by GraphQL to represent free-form human-readable text.",
|
86
|
+
"fields": null,
|
87
|
+
"inputFields": null,
|
88
|
+
"interfaces": null,
|
89
|
+
"enumValues": null,
|
90
|
+
"possibleTypes": null
|
91
|
+
},
|
92
|
+
{
|
93
|
+
"kind": "OBJECT",
|
94
|
+
"name": "__Directive",
|
95
|
+
"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.",
|
96
|
+
"fields": [
|
97
|
+
{
|
98
|
+
"name": "args",
|
99
|
+
"description": null,
|
100
|
+
"args": [
|
101
|
+
|
102
|
+
],
|
103
|
+
"type": {
|
104
|
+
"kind": "NON_NULL",
|
105
|
+
"name": null,
|
106
|
+
"ofType": {
|
107
|
+
"kind": "LIST",
|
108
|
+
"name": null,
|
109
|
+
"ofType": {
|
110
|
+
"kind": "NON_NULL",
|
111
|
+
"name": null,
|
112
|
+
"ofType": {
|
113
|
+
"kind": "OBJECT",
|
114
|
+
"name": "__InputValue",
|
115
|
+
"ofType": null
|
116
|
+
}
|
117
|
+
}
|
118
|
+
}
|
119
|
+
},
|
120
|
+
"isDeprecated": false,
|
121
|
+
"deprecationReason": null
|
122
|
+
},
|
123
|
+
{
|
124
|
+
"name": "description",
|
125
|
+
"description": null,
|
126
|
+
"args": [
|
127
|
+
|
128
|
+
],
|
129
|
+
"type": {
|
130
|
+
"kind": "SCALAR",
|
131
|
+
"name": "String",
|
132
|
+
"ofType": null
|
133
|
+
},
|
134
|
+
"isDeprecated": false,
|
135
|
+
"deprecationReason": null
|
136
|
+
},
|
137
|
+
{
|
138
|
+
"name": "locations",
|
139
|
+
"description": null,
|
140
|
+
"args": [
|
141
|
+
|
142
|
+
],
|
143
|
+
"type": {
|
144
|
+
"kind": "NON_NULL",
|
145
|
+
"name": null,
|
146
|
+
"ofType": {
|
147
|
+
"kind": "LIST",
|
148
|
+
"name": null,
|
149
|
+
"ofType": {
|
150
|
+
"kind": "NON_NULL",
|
151
|
+
"name": null,
|
152
|
+
"ofType": {
|
153
|
+
"kind": "ENUM",
|
154
|
+
"name": "__DirectiveLocation",
|
155
|
+
"ofType": null
|
156
|
+
}
|
157
|
+
}
|
158
|
+
}
|
159
|
+
},
|
160
|
+
"isDeprecated": false,
|
161
|
+
"deprecationReason": null
|
162
|
+
},
|
163
|
+
{
|
164
|
+
"name": "name",
|
165
|
+
"description": null,
|
166
|
+
"args": [
|
167
|
+
|
168
|
+
],
|
169
|
+
"type": {
|
170
|
+
"kind": "NON_NULL",
|
171
|
+
"name": null,
|
172
|
+
"ofType": {
|
173
|
+
"kind": "SCALAR",
|
174
|
+
"name": "String",
|
175
|
+
"ofType": null
|
176
|
+
}
|
177
|
+
},
|
178
|
+
"isDeprecated": false,
|
179
|
+
"deprecationReason": null
|
180
|
+
},
|
181
|
+
{
|
182
|
+
"name": "onField",
|
183
|
+
"description": null,
|
184
|
+
"args": [
|
185
|
+
|
186
|
+
],
|
187
|
+
"type": {
|
188
|
+
"kind": "NON_NULL",
|
189
|
+
"name": null,
|
190
|
+
"ofType": {
|
191
|
+
"kind": "SCALAR",
|
192
|
+
"name": "Boolean",
|
193
|
+
"ofType": null
|
194
|
+
}
|
195
|
+
},
|
196
|
+
"isDeprecated": true,
|
197
|
+
"deprecationReason": "Use `locations`."
|
198
|
+
},
|
199
|
+
{
|
200
|
+
"name": "onFragment",
|
201
|
+
"description": null,
|
202
|
+
"args": [
|
203
|
+
|
204
|
+
],
|
205
|
+
"type": {
|
206
|
+
"kind": "NON_NULL",
|
207
|
+
"name": null,
|
208
|
+
"ofType": {
|
209
|
+
"kind": "SCALAR",
|
210
|
+
"name": "Boolean",
|
211
|
+
"ofType": null
|
212
|
+
}
|
213
|
+
},
|
214
|
+
"isDeprecated": true,
|
215
|
+
"deprecationReason": "Use `locations`."
|
216
|
+
},
|
217
|
+
{
|
218
|
+
"name": "onOperation",
|
219
|
+
"description": null,
|
220
|
+
"args": [
|
221
|
+
|
222
|
+
],
|
223
|
+
"type": {
|
224
|
+
"kind": "NON_NULL",
|
225
|
+
"name": null,
|
226
|
+
"ofType": {
|
227
|
+
"kind": "SCALAR",
|
228
|
+
"name": "Boolean",
|
229
|
+
"ofType": null
|
230
|
+
}
|
231
|
+
},
|
232
|
+
"isDeprecated": true,
|
233
|
+
"deprecationReason": "Use `locations`."
|
234
|
+
}
|
235
|
+
],
|
236
|
+
"inputFields": null,
|
237
|
+
"interfaces": [
|
238
|
+
|
239
|
+
],
|
240
|
+
"enumValues": null,
|
241
|
+
"possibleTypes": null
|
242
|
+
},
|
243
|
+
{
|
244
|
+
"kind": "ENUM",
|
245
|
+
"name": "__DirectiveLocation",
|
246
|
+
"description": "A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.",
|
247
|
+
"fields": null,
|
248
|
+
"inputFields": null,
|
249
|
+
"interfaces": null,
|
250
|
+
"enumValues": [
|
251
|
+
{
|
252
|
+
"name": "QUERY",
|
253
|
+
"description": "Location adjacent to a query operation.",
|
254
|
+
"isDeprecated": false,
|
255
|
+
"deprecationReason": null
|
256
|
+
},
|
257
|
+
{
|
258
|
+
"name": "MUTATION",
|
259
|
+
"description": "Location adjacent to a mutation operation.",
|
260
|
+
"isDeprecated": false,
|
261
|
+
"deprecationReason": null
|
262
|
+
},
|
263
|
+
{
|
264
|
+
"name": "SUBSCRIPTION",
|
265
|
+
"description": "Location adjacent to a subscription operation.",
|
266
|
+
"isDeprecated": false,
|
267
|
+
"deprecationReason": null
|
268
|
+
},
|
269
|
+
{
|
270
|
+
"name": "FIELD",
|
271
|
+
"description": "Location adjacent to a field.",
|
272
|
+
"isDeprecated": false,
|
273
|
+
"deprecationReason": null
|
274
|
+
},
|
275
|
+
{
|
276
|
+
"name": "FRAGMENT_DEFINITION",
|
277
|
+
"description": "Location adjacent to a fragment definition.",
|
278
|
+
"isDeprecated": false,
|
279
|
+
"deprecationReason": null
|
280
|
+
},
|
281
|
+
{
|
282
|
+
"name": "FRAGMENT_SPREAD",
|
283
|
+
"description": "Location adjacent to a fragment spread.",
|
284
|
+
"isDeprecated": false,
|
285
|
+
"deprecationReason": null
|
286
|
+
},
|
287
|
+
{
|
288
|
+
"name": "INLINE_FRAGMENT",
|
289
|
+
"description": "Location adjacent to an inline fragment.",
|
290
|
+
"isDeprecated": false,
|
291
|
+
"deprecationReason": null
|
292
|
+
},
|
293
|
+
{
|
294
|
+
"name": "SCHEMA",
|
295
|
+
"description": "Location adjacent to a schema definition.",
|
296
|
+
"isDeprecated": false,
|
297
|
+
"deprecationReason": null
|
298
|
+
},
|
299
|
+
{
|
300
|
+
"name": "SCALAR",
|
301
|
+
"description": "Location adjacent to a scalar definition.",
|
302
|
+
"isDeprecated": false,
|
303
|
+
"deprecationReason": null
|
304
|
+
},
|
305
|
+
{
|
306
|
+
"name": "OBJECT",
|
307
|
+
"description": "Location adjacent to an object type definition.",
|
308
|
+
"isDeprecated": false,
|
309
|
+
"deprecationReason": null
|
310
|
+
},
|
311
|
+
{
|
312
|
+
"name": "FIELD_DEFINITION",
|
313
|
+
"description": "Location adjacent to a field definition.",
|
314
|
+
"isDeprecated": false,
|
315
|
+
"deprecationReason": null
|
316
|
+
},
|
317
|
+
{
|
318
|
+
"name": "ARGUMENT_DEFINITION",
|
319
|
+
"description": "Location adjacent to an argument definition.",
|
320
|
+
"isDeprecated": false,
|
321
|
+
"deprecationReason": null
|
322
|
+
},
|
323
|
+
{
|
324
|
+
"name": "INTERFACE",
|
325
|
+
"description": "Location adjacent to an interface definition.",
|
326
|
+
"isDeprecated": false,
|
327
|
+
"deprecationReason": null
|
328
|
+
},
|
329
|
+
{
|
330
|
+
"name": "UNION",
|
331
|
+
"description": "Location adjacent to a union definition.",
|
332
|
+
"isDeprecated": false,
|
333
|
+
"deprecationReason": null
|
334
|
+
},
|
335
|
+
{
|
336
|
+
"name": "ENUM",
|
337
|
+
"description": "Location adjacent to an enum definition.",
|
338
|
+
"isDeprecated": false,
|
339
|
+
"deprecationReason": null
|
340
|
+
},
|
341
|
+
{
|
342
|
+
"name": "ENUM_VALUE",
|
343
|
+
"description": "Location adjacent to an enum value definition.",
|
344
|
+
"isDeprecated": false,
|
345
|
+
"deprecationReason": null
|
346
|
+
},
|
347
|
+
{
|
348
|
+
"name": "INPUT_OBJECT",
|
349
|
+
"description": "Location adjacent to an input object type definition.",
|
350
|
+
"isDeprecated": false,
|
351
|
+
"deprecationReason": null
|
352
|
+
},
|
353
|
+
{
|
354
|
+
"name": "INPUT_FIELD_DEFINITION",
|
355
|
+
"description": "Location adjacent to an input object field definition.",
|
356
|
+
"isDeprecated": false,
|
357
|
+
"deprecationReason": null
|
358
|
+
}
|
359
|
+
],
|
360
|
+
"possibleTypes": null
|
361
|
+
},
|
362
|
+
{
|
363
|
+
"kind": "OBJECT",
|
364
|
+
"name": "__EnumValue",
|
365
|
+
"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.",
|
366
|
+
"fields": [
|
367
|
+
{
|
368
|
+
"name": "deprecationReason",
|
369
|
+
"description": null,
|
370
|
+
"args": [
|
371
|
+
|
372
|
+
],
|
373
|
+
"type": {
|
374
|
+
"kind": "SCALAR",
|
375
|
+
"name": "String",
|
376
|
+
"ofType": null
|
377
|
+
},
|
378
|
+
"isDeprecated": false,
|
379
|
+
"deprecationReason": null
|
380
|
+
},
|
381
|
+
{
|
382
|
+
"name": "description",
|
383
|
+
"description": null,
|
384
|
+
"args": [
|
385
|
+
|
386
|
+
],
|
387
|
+
"type": {
|
388
|
+
"kind": "SCALAR",
|
389
|
+
"name": "String",
|
390
|
+
"ofType": null
|
391
|
+
},
|
392
|
+
"isDeprecated": false,
|
393
|
+
"deprecationReason": null
|
394
|
+
},
|
395
|
+
{
|
396
|
+
"name": "isDeprecated",
|
397
|
+
"description": null,
|
398
|
+
"args": [
|
399
|
+
|
400
|
+
],
|
401
|
+
"type": {
|
402
|
+
"kind": "NON_NULL",
|
403
|
+
"name": null,
|
404
|
+
"ofType": {
|
405
|
+
"kind": "SCALAR",
|
406
|
+
"name": "Boolean",
|
407
|
+
"ofType": null
|
408
|
+
}
|
409
|
+
},
|
410
|
+
"isDeprecated": false,
|
411
|
+
"deprecationReason": null
|
412
|
+
},
|
413
|
+
{
|
414
|
+
"name": "name",
|
415
|
+
"description": null,
|
416
|
+
"args": [
|
417
|
+
|
418
|
+
],
|
419
|
+
"type": {
|
420
|
+
"kind": "NON_NULL",
|
421
|
+
"name": null,
|
422
|
+
"ofType": {
|
423
|
+
"kind": "SCALAR",
|
424
|
+
"name": "String",
|
425
|
+
"ofType": null
|
426
|
+
}
|
427
|
+
},
|
428
|
+
"isDeprecated": false,
|
429
|
+
"deprecationReason": null
|
430
|
+
}
|
431
|
+
],
|
432
|
+
"inputFields": null,
|
433
|
+
"interfaces": [
|
434
|
+
|
435
|
+
],
|
436
|
+
"enumValues": null,
|
437
|
+
"possibleTypes": null
|
438
|
+
},
|
439
|
+
{
|
440
|
+
"kind": "OBJECT",
|
441
|
+
"name": "__Field",
|
442
|
+
"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.",
|
443
|
+
"fields": [
|
444
|
+
{
|
445
|
+
"name": "args",
|
446
|
+
"description": null,
|
447
|
+
"args": [
|
448
|
+
|
449
|
+
],
|
450
|
+
"type": {
|
451
|
+
"kind": "NON_NULL",
|
452
|
+
"name": null,
|
453
|
+
"ofType": {
|
454
|
+
"kind": "LIST",
|
455
|
+
"name": null,
|
456
|
+
"ofType": {
|
457
|
+
"kind": "NON_NULL",
|
458
|
+
"name": null,
|
459
|
+
"ofType": {
|
460
|
+
"kind": "OBJECT",
|
461
|
+
"name": "__InputValue",
|
462
|
+
"ofType": null
|
463
|
+
}
|
464
|
+
}
|
465
|
+
}
|
466
|
+
},
|
467
|
+
"isDeprecated": false,
|
468
|
+
"deprecationReason": null
|
469
|
+
},
|
470
|
+
{
|
471
|
+
"name": "deprecationReason",
|
472
|
+
"description": null,
|
473
|
+
"args": [
|
474
|
+
|
475
|
+
],
|
476
|
+
"type": {
|
477
|
+
"kind": "SCALAR",
|
478
|
+
"name": "String",
|
479
|
+
"ofType": null
|
480
|
+
},
|
481
|
+
"isDeprecated": false,
|
482
|
+
"deprecationReason": null
|
483
|
+
},
|
484
|
+
{
|
485
|
+
"name": "description",
|
486
|
+
"description": null,
|
487
|
+
"args": [
|
488
|
+
|
489
|
+
],
|
490
|
+
"type": {
|
491
|
+
"kind": "SCALAR",
|
492
|
+
"name": "String",
|
493
|
+
"ofType": null
|
494
|
+
},
|
495
|
+
"isDeprecated": false,
|
496
|
+
"deprecationReason": null
|
497
|
+
},
|
498
|
+
{
|
499
|
+
"name": "isDeprecated",
|
500
|
+
"description": null,
|
501
|
+
"args": [
|
502
|
+
|
503
|
+
],
|
504
|
+
"type": {
|
505
|
+
"kind": "NON_NULL",
|
506
|
+
"name": null,
|
507
|
+
"ofType": {
|
508
|
+
"kind": "SCALAR",
|
509
|
+
"name": "Boolean",
|
510
|
+
"ofType": null
|
511
|
+
}
|
512
|
+
},
|
513
|
+
"isDeprecated": false,
|
514
|
+
"deprecationReason": null
|
515
|
+
},
|
516
|
+
{
|
517
|
+
"name": "name",
|
518
|
+
"description": null,
|
519
|
+
"args": [
|
520
|
+
|
521
|
+
],
|
522
|
+
"type": {
|
523
|
+
"kind": "NON_NULL",
|
524
|
+
"name": null,
|
525
|
+
"ofType": {
|
526
|
+
"kind": "SCALAR",
|
527
|
+
"name": "String",
|
528
|
+
"ofType": null
|
529
|
+
}
|
530
|
+
},
|
531
|
+
"isDeprecated": false,
|
532
|
+
"deprecationReason": null
|
533
|
+
},
|
534
|
+
{
|
535
|
+
"name": "type",
|
536
|
+
"description": null,
|
537
|
+
"args": [
|
538
|
+
|
539
|
+
],
|
540
|
+
"type": {
|
541
|
+
"kind": "NON_NULL",
|
542
|
+
"name": null,
|
543
|
+
"ofType": {
|
544
|
+
"kind": "OBJECT",
|
545
|
+
"name": "__Type",
|
546
|
+
"ofType": null
|
547
|
+
}
|
548
|
+
},
|
549
|
+
"isDeprecated": false,
|
550
|
+
"deprecationReason": null
|
551
|
+
}
|
552
|
+
],
|
553
|
+
"inputFields": null,
|
554
|
+
"interfaces": [
|
555
|
+
|
556
|
+
],
|
557
|
+
"enumValues": null,
|
558
|
+
"possibleTypes": null
|
559
|
+
},
|
560
|
+
{
|
561
|
+
"kind": "OBJECT",
|
562
|
+
"name": "__InputValue",
|
563
|
+
"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.",
|
564
|
+
"fields": [
|
565
|
+
{
|
566
|
+
"name": "defaultValue",
|
567
|
+
"description": "A GraphQL-formatted string representing the default value for this input value.",
|
568
|
+
"args": [
|
569
|
+
|
570
|
+
],
|
571
|
+
"type": {
|
572
|
+
"kind": "SCALAR",
|
573
|
+
"name": "String",
|
574
|
+
"ofType": null
|
575
|
+
},
|
576
|
+
"isDeprecated": false,
|
577
|
+
"deprecationReason": null
|
578
|
+
},
|
579
|
+
{
|
580
|
+
"name": "description",
|
581
|
+
"description": null,
|
582
|
+
"args": [
|
583
|
+
|
584
|
+
],
|
585
|
+
"type": {
|
586
|
+
"kind": "SCALAR",
|
587
|
+
"name": "String",
|
588
|
+
"ofType": null
|
589
|
+
},
|
590
|
+
"isDeprecated": false,
|
591
|
+
"deprecationReason": null
|
592
|
+
},
|
593
|
+
{
|
594
|
+
"name": "name",
|
595
|
+
"description": null,
|
596
|
+
"args": [
|
597
|
+
|
598
|
+
],
|
599
|
+
"type": {
|
600
|
+
"kind": "NON_NULL",
|
601
|
+
"name": null,
|
602
|
+
"ofType": {
|
603
|
+
"kind": "SCALAR",
|
604
|
+
"name": "String",
|
605
|
+
"ofType": null
|
606
|
+
}
|
607
|
+
},
|
608
|
+
"isDeprecated": false,
|
609
|
+
"deprecationReason": null
|
610
|
+
},
|
611
|
+
{
|
612
|
+
"name": "type",
|
613
|
+
"description": null,
|
614
|
+
"args": [
|
615
|
+
|
616
|
+
],
|
617
|
+
"type": {
|
618
|
+
"kind": "NON_NULL",
|
619
|
+
"name": null,
|
620
|
+
"ofType": {
|
621
|
+
"kind": "OBJECT",
|
622
|
+
"name": "__Type",
|
623
|
+
"ofType": null
|
624
|
+
}
|
625
|
+
},
|
626
|
+
"isDeprecated": false,
|
627
|
+
"deprecationReason": null
|
628
|
+
}
|
629
|
+
],
|
630
|
+
"inputFields": null,
|
631
|
+
"interfaces": [
|
632
|
+
|
633
|
+
],
|
634
|
+
"enumValues": null,
|
635
|
+
"possibleTypes": null
|
636
|
+
},
|
637
|
+
{
|
638
|
+
"kind": "OBJECT",
|
639
|
+
"name": "__Schema",
|
640
|
+
"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.",
|
641
|
+
"fields": [
|
642
|
+
{
|
643
|
+
"name": "directives",
|
644
|
+
"description": "A list of all directives supported by this server.",
|
645
|
+
"args": [
|
646
|
+
|
647
|
+
],
|
648
|
+
"type": {
|
649
|
+
"kind": "NON_NULL",
|
650
|
+
"name": null,
|
651
|
+
"ofType": {
|
652
|
+
"kind": "LIST",
|
653
|
+
"name": null,
|
654
|
+
"ofType": {
|
655
|
+
"kind": "NON_NULL",
|
656
|
+
"name": null,
|
657
|
+
"ofType": {
|
658
|
+
"kind": "OBJECT",
|
659
|
+
"name": "__Directive",
|
660
|
+
"ofType": null
|
661
|
+
}
|
662
|
+
}
|
663
|
+
}
|
664
|
+
},
|
665
|
+
"isDeprecated": false,
|
666
|
+
"deprecationReason": null
|
667
|
+
},
|
668
|
+
{
|
669
|
+
"name": "mutationType",
|
670
|
+
"description": "If this server supports mutation, the type that mutation operations will be rooted at.",
|
671
|
+
"args": [
|
672
|
+
|
673
|
+
],
|
674
|
+
"type": {
|
675
|
+
"kind": "OBJECT",
|
676
|
+
"name": "__Type",
|
677
|
+
"ofType": null
|
678
|
+
},
|
679
|
+
"isDeprecated": false,
|
680
|
+
"deprecationReason": null
|
681
|
+
},
|
682
|
+
{
|
683
|
+
"name": "queryType",
|
684
|
+
"description": "The type that query operations will be rooted at.",
|
685
|
+
"args": [
|
686
|
+
|
687
|
+
],
|
688
|
+
"type": {
|
689
|
+
"kind": "NON_NULL",
|
690
|
+
"name": null,
|
691
|
+
"ofType": {
|
692
|
+
"kind": "OBJECT",
|
693
|
+
"name": "__Type",
|
694
|
+
"ofType": null
|
695
|
+
}
|
696
|
+
},
|
697
|
+
"isDeprecated": false,
|
698
|
+
"deprecationReason": null
|
699
|
+
},
|
700
|
+
{
|
701
|
+
"name": "subscriptionType",
|
702
|
+
"description": "If this server support subscription, the type that subscription operations will be rooted at.",
|
703
|
+
"args": [
|
704
|
+
|
705
|
+
],
|
706
|
+
"type": {
|
707
|
+
"kind": "OBJECT",
|
708
|
+
"name": "__Type",
|
709
|
+
"ofType": null
|
710
|
+
},
|
711
|
+
"isDeprecated": false,
|
712
|
+
"deprecationReason": null
|
713
|
+
},
|
714
|
+
{
|
715
|
+
"name": "types",
|
716
|
+
"description": "A list of all types supported by this server.",
|
717
|
+
"args": [
|
718
|
+
|
719
|
+
],
|
720
|
+
"type": {
|
721
|
+
"kind": "NON_NULL",
|
722
|
+
"name": null,
|
723
|
+
"ofType": {
|
724
|
+
"kind": "LIST",
|
725
|
+
"name": null,
|
726
|
+
"ofType": {
|
727
|
+
"kind": "NON_NULL",
|
728
|
+
"name": null,
|
729
|
+
"ofType": {
|
730
|
+
"kind": "OBJECT",
|
731
|
+
"name": "__Type",
|
732
|
+
"ofType": null
|
733
|
+
}
|
734
|
+
}
|
735
|
+
}
|
736
|
+
},
|
737
|
+
"isDeprecated": false,
|
738
|
+
"deprecationReason": null
|
739
|
+
}
|
740
|
+
],
|
741
|
+
"inputFields": null,
|
742
|
+
"interfaces": [
|
743
|
+
|
744
|
+
],
|
745
|
+
"enumValues": null,
|
746
|
+
"possibleTypes": null
|
747
|
+
},
|
748
|
+
{
|
749
|
+
"kind": "OBJECT",
|
750
|
+
"name": "__Type",
|
751
|
+
"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.",
|
752
|
+
"fields": [
|
753
|
+
{
|
754
|
+
"name": "description",
|
755
|
+
"description": null,
|
756
|
+
"args": [
|
757
|
+
|
758
|
+
],
|
759
|
+
"type": {
|
760
|
+
"kind": "SCALAR",
|
761
|
+
"name": "String",
|
762
|
+
"ofType": null
|
763
|
+
},
|
764
|
+
"isDeprecated": false,
|
765
|
+
"deprecationReason": null
|
766
|
+
},
|
767
|
+
{
|
768
|
+
"name": "enumValues",
|
769
|
+
"description": null,
|
770
|
+
"args": [
|
771
|
+
{
|
772
|
+
"name": "includeDeprecated",
|
773
|
+
"description": null,
|
774
|
+
"type": {
|
775
|
+
"kind": "SCALAR",
|
776
|
+
"name": "Boolean",
|
777
|
+
"ofType": null
|
778
|
+
},
|
779
|
+
"defaultValue": "false"
|
780
|
+
}
|
781
|
+
],
|
782
|
+
"type": {
|
783
|
+
"kind": "LIST",
|
784
|
+
"name": null,
|
785
|
+
"ofType": {
|
786
|
+
"kind": "NON_NULL",
|
787
|
+
"name": null,
|
788
|
+
"ofType": {
|
789
|
+
"kind": "OBJECT",
|
790
|
+
"name": "__EnumValue",
|
791
|
+
"ofType": null
|
792
|
+
}
|
793
|
+
}
|
794
|
+
},
|
795
|
+
"isDeprecated": false,
|
796
|
+
"deprecationReason": null
|
797
|
+
},
|
798
|
+
{
|
799
|
+
"name": "fields",
|
800
|
+
"description": null,
|
801
|
+
"args": [
|
802
|
+
{
|
803
|
+
"name": "includeDeprecated",
|
804
|
+
"description": null,
|
805
|
+
"type": {
|
806
|
+
"kind": "SCALAR",
|
807
|
+
"name": "Boolean",
|
808
|
+
"ofType": null
|
809
|
+
},
|
810
|
+
"defaultValue": "false"
|
811
|
+
}
|
812
|
+
],
|
813
|
+
"type": {
|
814
|
+
"kind": "LIST",
|
815
|
+
"name": null,
|
816
|
+
"ofType": {
|
817
|
+
"kind": "NON_NULL",
|
818
|
+
"name": null,
|
819
|
+
"ofType": {
|
820
|
+
"kind": "OBJECT",
|
821
|
+
"name": "__Field",
|
822
|
+
"ofType": null
|
823
|
+
}
|
824
|
+
}
|
825
|
+
},
|
826
|
+
"isDeprecated": false,
|
827
|
+
"deprecationReason": null
|
828
|
+
},
|
829
|
+
{
|
830
|
+
"name": "inputFields",
|
831
|
+
"description": null,
|
832
|
+
"args": [
|
833
|
+
|
834
|
+
],
|
835
|
+
"type": {
|
836
|
+
"kind": "LIST",
|
837
|
+
"name": null,
|
838
|
+
"ofType": {
|
839
|
+
"kind": "NON_NULL",
|
840
|
+
"name": null,
|
841
|
+
"ofType": {
|
842
|
+
"kind": "OBJECT",
|
843
|
+
"name": "__InputValue",
|
844
|
+
"ofType": null
|
845
|
+
}
|
846
|
+
}
|
847
|
+
},
|
848
|
+
"isDeprecated": false,
|
849
|
+
"deprecationReason": null
|
850
|
+
},
|
851
|
+
{
|
852
|
+
"name": "interfaces",
|
853
|
+
"description": null,
|
854
|
+
"args": [
|
855
|
+
|
856
|
+
],
|
857
|
+
"type": {
|
858
|
+
"kind": "LIST",
|
859
|
+
"name": null,
|
860
|
+
"ofType": {
|
861
|
+
"kind": "NON_NULL",
|
862
|
+
"name": null,
|
863
|
+
"ofType": {
|
864
|
+
"kind": "OBJECT",
|
865
|
+
"name": "__Type",
|
866
|
+
"ofType": null
|
867
|
+
}
|
868
|
+
}
|
869
|
+
},
|
870
|
+
"isDeprecated": false,
|
871
|
+
"deprecationReason": null
|
872
|
+
},
|
873
|
+
{
|
874
|
+
"name": "kind",
|
875
|
+
"description": null,
|
876
|
+
"args": [
|
877
|
+
|
878
|
+
],
|
879
|
+
"type": {
|
880
|
+
"kind": "NON_NULL",
|
881
|
+
"name": null,
|
882
|
+
"ofType": {
|
883
|
+
"kind": "ENUM",
|
884
|
+
"name": "__TypeKind",
|
885
|
+
"ofType": null
|
886
|
+
}
|
887
|
+
},
|
888
|
+
"isDeprecated": false,
|
889
|
+
"deprecationReason": null
|
890
|
+
},
|
891
|
+
{
|
892
|
+
"name": "name",
|
893
|
+
"description": null,
|
894
|
+
"args": [
|
895
|
+
|
896
|
+
],
|
897
|
+
"type": {
|
898
|
+
"kind": "SCALAR",
|
899
|
+
"name": "String",
|
900
|
+
"ofType": null
|
901
|
+
},
|
902
|
+
"isDeprecated": false,
|
903
|
+
"deprecationReason": null
|
904
|
+
},
|
905
|
+
{
|
906
|
+
"name": "ofType",
|
907
|
+
"description": null,
|
908
|
+
"args": [
|
909
|
+
|
910
|
+
],
|
911
|
+
"type": {
|
912
|
+
"kind": "OBJECT",
|
913
|
+
"name": "__Type",
|
914
|
+
"ofType": null
|
915
|
+
},
|
916
|
+
"isDeprecated": false,
|
917
|
+
"deprecationReason": null
|
918
|
+
},
|
919
|
+
{
|
920
|
+
"name": "possibleTypes",
|
921
|
+
"description": null,
|
922
|
+
"args": [
|
923
|
+
|
924
|
+
],
|
925
|
+
"type": {
|
926
|
+
"kind": "LIST",
|
927
|
+
"name": null,
|
928
|
+
"ofType": {
|
929
|
+
"kind": "NON_NULL",
|
930
|
+
"name": null,
|
931
|
+
"ofType": {
|
932
|
+
"kind": "OBJECT",
|
933
|
+
"name": "__Type",
|
934
|
+
"ofType": null
|
935
|
+
}
|
936
|
+
}
|
937
|
+
},
|
938
|
+
"isDeprecated": false,
|
939
|
+
"deprecationReason": null
|
940
|
+
}
|
941
|
+
],
|
942
|
+
"inputFields": null,
|
943
|
+
"interfaces": [
|
944
|
+
|
945
|
+
],
|
946
|
+
"enumValues": null,
|
947
|
+
"possibleTypes": null
|
948
|
+
},
|
949
|
+
{
|
950
|
+
"kind": "ENUM",
|
951
|
+
"name": "__TypeKind",
|
952
|
+
"description": "An enum describing what kind of type a given `__Type` is.",
|
953
|
+
"fields": null,
|
954
|
+
"inputFields": null,
|
955
|
+
"interfaces": null,
|
956
|
+
"enumValues": [
|
957
|
+
{
|
958
|
+
"name": "SCALAR",
|
959
|
+
"description": "Indicates this type is a scalar.",
|
960
|
+
"isDeprecated": false,
|
961
|
+
"deprecationReason": null
|
962
|
+
},
|
963
|
+
{
|
964
|
+
"name": "OBJECT",
|
965
|
+
"description": "Indicates this type is an object. `fields` and `interfaces` are valid fields.",
|
966
|
+
"isDeprecated": false,
|
967
|
+
"deprecationReason": null
|
968
|
+
},
|
969
|
+
{
|
970
|
+
"name": "INTERFACE",
|
971
|
+
"description": "Indicates this type is an interface. `fields` and `possibleTypes` are valid fields.",
|
972
|
+
"isDeprecated": false,
|
973
|
+
"deprecationReason": null
|
974
|
+
},
|
975
|
+
{
|
976
|
+
"name": "UNION",
|
977
|
+
"description": "Indicates this type is a union. `possibleTypes` is a valid field.",
|
978
|
+
"isDeprecated": false,
|
979
|
+
"deprecationReason": null
|
980
|
+
},
|
981
|
+
{
|
982
|
+
"name": "ENUM",
|
983
|
+
"description": "Indicates this type is an enum. `enumValues` is a valid field.",
|
984
|
+
"isDeprecated": false,
|
985
|
+
"deprecationReason": null
|
986
|
+
},
|
987
|
+
{
|
988
|
+
"name": "INPUT_OBJECT",
|
989
|
+
"description": "Indicates this type is an input object. `inputFields` is a valid field.",
|
990
|
+
"isDeprecated": false,
|
991
|
+
"deprecationReason": null
|
992
|
+
},
|
993
|
+
{
|
994
|
+
"name": "LIST",
|
995
|
+
"description": "Indicates this type is a list. `ofType` is a valid field.",
|
996
|
+
"isDeprecated": false,
|
997
|
+
"deprecationReason": null
|
998
|
+
},
|
999
|
+
{
|
1000
|
+
"name": "NON_NULL",
|
1001
|
+
"description": "Indicates this type is a non-null. `ofType` is a valid field.",
|
1002
|
+
"isDeprecated": false,
|
1003
|
+
"deprecationReason": null
|
1004
|
+
}
|
1005
|
+
],
|
1006
|
+
"possibleTypes": null
|
1007
|
+
}
|
1008
|
+
],
|
1009
|
+
"directives": [
|
1010
|
+
{
|
1011
|
+
"name": "include",
|
1012
|
+
"description": "Directs the executor to include this field or fragment only when the `if` argument is true.",
|
1013
|
+
"locations": [
|
1014
|
+
"FIELD",
|
1015
|
+
"FRAGMENT_SPREAD",
|
1016
|
+
"INLINE_FRAGMENT"
|
1017
|
+
],
|
1018
|
+
"args": [
|
1019
|
+
{
|
1020
|
+
"name": "if",
|
1021
|
+
"description": "Included when true.",
|
1022
|
+
"type": {
|
1023
|
+
"kind": "NON_NULL",
|
1024
|
+
"name": null,
|
1025
|
+
"ofType": {
|
1026
|
+
"kind": "SCALAR",
|
1027
|
+
"name": "Boolean",
|
1028
|
+
"ofType": null
|
1029
|
+
}
|
1030
|
+
},
|
1031
|
+
"defaultValue": null
|
1032
|
+
}
|
1033
|
+
]
|
1034
|
+
},
|
1035
|
+
{
|
1036
|
+
"name": "skip",
|
1037
|
+
"description": "Directs the executor to skip this field or fragment when the `if` argument is true.",
|
1038
|
+
"locations": [
|
1039
|
+
"FIELD",
|
1040
|
+
"FRAGMENT_SPREAD",
|
1041
|
+
"INLINE_FRAGMENT"
|
1042
|
+
],
|
1043
|
+
"args": [
|
1044
|
+
{
|
1045
|
+
"name": "if",
|
1046
|
+
"description": "Skipped when true.",
|
1047
|
+
"type": {
|
1048
|
+
"kind": "NON_NULL",
|
1049
|
+
"name": null,
|
1050
|
+
"ofType": {
|
1051
|
+
"kind": "SCALAR",
|
1052
|
+
"name": "Boolean",
|
1053
|
+
"ofType": null
|
1054
|
+
}
|
1055
|
+
},
|
1056
|
+
"defaultValue": null
|
1057
|
+
}
|
1058
|
+
]
|
1059
|
+
},
|
1060
|
+
{
|
1061
|
+
"name": "deprecated",
|
1062
|
+
"description": "Marks an element of a GraphQL schema as no longer supported.",
|
1063
|
+
"locations": [
|
1064
|
+
"FIELD_DEFINITION",
|
1065
|
+
"ENUM_VALUE"
|
1066
|
+
],
|
1067
|
+
"args": [
|
1068
|
+
{
|
1069
|
+
"name": "reason",
|
1070
|
+
"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/).",
|
1071
|
+
"type": {
|
1072
|
+
"kind": "SCALAR",
|
1073
|
+
"name": "String",
|
1074
|
+
"ofType": null
|
1075
|
+
},
|
1076
|
+
"defaultValue": "\"No longer supported\""
|
1077
|
+
}
|
1078
|
+
]
|
1079
|
+
}
|
1080
|
+
]
|
1081
|
+
}
|
1082
|
+
}
|
1083
|
+
}
|