Hi,
I’m attempting to access a customAttributesV2 value via a GQL (general structure below).
I get the following error:
"Field 'fulfillmentsV2' doesn't exist on type 'Order'"
Is there a workaround for this, or a plan to make the field available via API?
fulfillments & customAttributes are currently available but do not return the required values.
Many thanks,
Hamish
{
orders {
edges {
node {
fulfillmentsV2 {
fulfillmentLineItems {
nodes {
id
lineItem {
customAttributesV2 {
key
value
}
id
product {
customProductType
metafields {
edges
nodes
}
}
}
}
edges {
node {
lineItem {
customAttributesV2 {
key
value
}
}
id
}
}
pageInfo
}
events
}
}
}
nodes {
id
}
}
}