Closed
Description
Hi,
i am testing the shopify graphQL-API.
I can use variables in header, request, but not in everywhere in the body.
A simple query is runnung into errors because {{sku}} is not replaced its value.
Error message from Shopify: "Invalid global id 'gid://shopify/Product/{{sku}}'".
Suprisingliy it is, when i use it in the graphQL variable definition area.
I've tried "{{sku}}", \{\{sku\}\}, `$(sku))` , `"$(sku))"` ... and so on,
Why is it not working in the query definition,
but working with variable definitions message part of the body?
@sku=123456789
###
# @title ERROR with httpyac variable
POST https://{{storename}}.myshopify.com/admin/api/2024-04/graphql.json
...defaultHeaders
query getit {
product( id: "gid://shopify/Product/{{sku}}" ) {
id
status
}
}
###
# @titel replacement with graphQL variable is working
POST https://{{storename}}.myshopify.com/admin/api/2024-04/graphql.json
...defaultHeaders
query getit($sku: ID!) {
product( id: $sku ) {
id
status
}
}
{
"sku": "gid://shopify/Product/{{sku}}"
}
Metadata
Assignees
Labels
No labels