Skip to content

Commit 884852e

Browse files
committed
updates
1 parent 0035a64 commit 884852e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

components/shopify_developer_app/actions/common/metafield-actions.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ export default {
118118
return this.shopify.getPropOptions({
119119
resourceFn: this.shopify.listDraftOrders,
120120
resourceKeys: [
121-
"draftrders",
121+
"draftOrders",
122122
],
123123
labelKey: "id",
124124
prevContext,

components/shopify_developer_app/actions/create-order/create-order.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export default {
1717
billingAddress: {
1818
type: "object",
1919
label: "Billing Address",
20-
description: "The mailing address associated with the payment method. More details when searching **billing_address** in [Shopify Order Object](hhttps://shopify.dev/docs/api/admin-graphql/latest/objects/order)",
20+
description: "The mailing address associated with the payment method. More details when searching **billing_address** in [Shopify Order Object](https://shopify.dev/docs/api/admin-graphql/latest/objects/order)",
2121
optional: true,
2222
},
2323
shippingAddress: {
@@ -141,7 +141,7 @@ export default {
141141
shippingAddress: utils.parseJson(this.shippingAddress),
142142
financialStatus: this.financialStatus,
143143
discountCode: utils.parseJson(this.discountCode),
144-
fulfillment: utils.parseJson(this.fulfillments),
144+
fulfillment: utils.parseJson(this.fulfillment),
145145
fulfillmentStatus: this.fulfillmentStatus,
146146
taxLines: utils.parseJson(this.taxLines),
147147
currency: this.currency,

components/shopify_developer_app/common/queries.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ const GET_CUSTOMER = `
8484
`;
8585

8686
const GET_DRAFT_ORDER = `
87-
query ($first: Int, $after: String) {
87+
query ($id: ID!, $first: Int, $after: String) {
8888
draftOrder(id: $id) {
8989
name
9090
metafields (first: $first, after: $after) {

0 commit comments

Comments
 (0)