Full resync of shopifyFulfillmentOrder model

I've only recently passed Shopify's Level 2 review for accessing protected customer data, and I am trying to backfill my shopifyFulfillmentOrder model, but it doesn't seem to be working as I would expect. The process completes almost instantly and no records are updated. I'm running this action:
await api.shopifySync.run({
shopifySync: {
domain: "shop.authentified.co",
shop: {
_link: "70224281815",
},
models: ["shopifyFulfillmentOrder"],
force: true,
},
})
await api.shopifySync.run({
shopifySync: {
domain: "shop.authentified.co",
shop: {
_link: "70224281815",
},
models: ["shopifyFulfillmentOrder"],
force: true,
},
})
I've tried running a manual sync as well, but no dice there either. Is there something I'm missing?
2 Replies
muchi
muchi8mo ago
hey @Dave ! to sync the fulfillmentOrder you also need to pass in the order model as its a parent to the fulfillmentOrder!
Dave
DaveOP8mo ago
Thanks @muchi that did the trick

Did you find this page helpful?