File tree Expand file tree Collapse file tree
packages/gatsby-source-shopify/src Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ export function pluginOptionsSchema({ Joi }: PluginOptionsSchemaArgs): unknown {
4343 `Not set by default. If set to a string (example \`MyStore\`) node names will be \`allMyStoreShopifyProducts\` instead of \`allShopifyProducts\``
4444 ) ,
4545 apiVersion : Joi . string ( )
46- . default ( `2024-07 ` )
46+ . default ( `2024-10 ` )
4747 . description (
4848 `The API version that should be used. More information: https://shopify.dev/docs/api/usage/versioning`
4949 ) ,
Original file line number Diff line number Diff line change @@ -50,10 +50,6 @@ export class LocationsQuery extends BulkQuery {
5050 id
5151 inventoryManagement
5252 serviceName
53- shippingMethods {
54- code
55- label
56- }
5753 type
5854 }
5955 fulfillsOnlineOrders
Original file line number Diff line number Diff line change @@ -6,7 +6,6 @@ export function locationTypeBuilder(prefix: string): string {
66 handle: String!
77 inventoryManagement: Boolean!
88 serviceName: String!
9- shippingMethods: [${ prefix } ShippingMethod!]!
109 shopifyId: String!
1110 type: ${ prefix } FulfillmentServiceType!
1211 }
@@ -97,11 +96,6 @@ export function locationTypeBuilder(prefix: string): string {
9796 zip: String
9897 }
9998
100- type ${ prefix } ShippingMethod {
101- code: String!
102- label: String!
103- }
104-
10599 type ${ prefix } Weight {
106100 unit: ${ prefix } WeightUnit!
107101 value: Float!
You can’t perform that action at this time.
0 commit comments