Hi
I try to get the order app Id using graphql orders.
on shopify.dev docs https://shopify.dev/docs/api/admin-graphql/2023-07/objects/OrderApp orderApp has 3 field: name, icon and id
Name and Icon works as expected but when I add id, I receive this error:
“Field ‘id’ doesn’t exist on type ‘OrderApp’”
This is the query I’m using:
{
order(id: "gid://shopify/Order/<orderId>") {
name,
app {
id,
name,
icon {
url
}
}
}
}