I got this error each time I try to retrieve metafields of a company in Admin extension (block and action)
"Internal error. Looks like something went wrong on our end.\nRequest ID: 376add74-344f-495e-9377-38a7342e25e5-1740473794 (include this in support requests).
Here is the query string :
const getCompanyQuery = {
query: `query DraftOrder($id: ID!) {
draftOrder(id: $id) {
id
purchasingEntity {
... on Customer {
id
}
... on PurchasingCompany {
company {
id
metafields(first: 30) {
edges {
node {
namespace
key
value
}
}
}
}
}
}
}
}`,
variables: {id: data.selected[0].id},
}
Can Shopify staff help check if this is a bug on Shopify’s internal? Or was that my query is malformed?