Have your say in Community Polls: What was/is your greatest motivation to start your own business?
Our Partner & Developer boards on the community are moving to a brand new home: the .dev community forums! While you can still access past discussions here, for all your future app and storefront building questions, head over to the new forums.

GraphQl Mutation response parse error

GraphQl Mutation response parse error

bill_the_badger
Shopify Partner
6 1 0

Hi there,

 

I'm trying my first fulfillment mutation - and receiving a parse error in the response:

 

{"errors":[{"message":"Parse error on \"{\" (LCURLY) at [1, 132]","locations":[{"line":1,"column":132}]}]}

 

The query looks so:

 

mutation fulfillmentCreateV2($fulfillment: FulfillmentV2Input!) { fulfillmentCreateV2( fulfillment: $fulfillment ) { fulfillment { {"fulfillment":{"lineItemsByFulfillmentOrder":[{"fulfillmentOrderId":"4824818319500","fulfillmentOrderLineItems":{"id":"12317301801100","quantity":"1"}}],"notifyCustomer":true,"originAddress":{"address1":"TLSP","address2":"Test Addr2","city":"Test City","countryCode":"GB","provinceCode":"","zip":"AL1 1AL"},"trackingInfo":{"company":"Royal Mail","number":"TT116970370GB","url":"https://www.royalmail.com/track-your-item#/tracking-results/JC206970370GB"}}} } userErrors { field message } } }

 

If some kind person could please tell me what I am doing wrong, I would be ever so grateful.

 

Many thanks in advance

 

BtB

Replies 2 (2)

bhavin_iflair
Shopify Partner
9 1 3

Please use as per below example.

mutation { fulfillmentCreateV2(fulfillment: {lineItemsByFulfillmentOrder: {fulfillmentOrderId: "gid://shopify/FulfillmentOrder/5022655414410" , fulfillmentOrderLineItems: [{id: "gid://shopify/FulfillmentOrderLineItem/10565649891466", quantity: 3}]}, trackingInfo: {company: "DHL", number: "00340434260386361229", url: "https://www.dhl.com/de-de/home/tracking/tracking-parcel.html?submit=1&tracking-id=003404342603863612..."}, notifyCustomer: true}) { fulfillment { id status } userErrors { field message } } }

bill_the_badger
Shopify Partner
6 1 0

I'm very sorry - I have no logged in since 06/21 - many thanks, I will try this and get back to you.