Version: 2024-10
Curl example: "curl -X POST \\\nhttps://your-development-store.myshopify.com/admin/api/2024-10/graphql.json \\\n-H 'Content-Type: application/json' \\\n-H 'X-Shopify-Access-Token: {access_token}' \\\n-d '{\n\"query\": \"query { returnableFulfillments(orderId: \\\"gid://shopify/Order/215577410\\\", first: 5) { edges { node { id fulfillment { id displayStatus location { address { address1 } } } } } } }\"\n}'\n" Node example: "const client = new shopify.clients.Graphql({session});\nconst data = await client.query({\n data: `query {\n returnableFulfillments(orderId: \"gid://shopify/Order/215577410\", first: 5) {\n edges {\n node {\n id\n fulfillment {\n id\n displayStatus\n location {\n address {\n address1\n }\n }\n }\n }\n }\n }\n }`,\n});\n" Ruby example: "session = ShopifyAPI::Auth::Session.new(\n shop: \"your-development-store.myshopify.com\",\n access_token: access_token\n)\nclient = ShopifyAPI::Clients::Graphql::Admin.new(\n session: session\n)\n\nquery = <<~QUERY\n query {\n returnableFulfillments(orderId: \"gid://shopify/Order/215577410\", first: 5) {\n edges {\n node {\n id\n fulfillment {\n id\n displayStatus\n location {\n address {\n address1\n }\n }\n }\n }\n }\n }\n }\nQUERY\n\nresponse = client.query(query: query)\n" PHP example: "use Shopify\\Clients\\Graphql;\n\n$client = new Graphql(\"your-development-store.myshopify.com\", $accessToken);\n$query = <<query([\"query\" => $query]);\n" Remix example: "const { admin } = await authenticate.admin(request);\n\nconst response = await admin.graphql(\n `#graphql\n query {\n returnableFulfillments(orderId: \"gid://shopify/Order/215577410\", first: 5) {\n edges {\n node {\n id\n fulfillment {\n id\n displayStatus\n location {\n address {\n address1\n }\n }\n }\n }\n }\n }\n }`,\n);\n\nconst data = await response.json();\n" Graphql query: "query {\n returnableFulfillments(orderId: \"gid://shopify/Order/215577410\", first: 5) {\n edges {\n node {\n id\n fulfillment {\n id\n displayStatus\n location {\n address {\n address1\n }\n }\n }\n }\n }\n }\n}"
input: null
response: { "data": { "returnableFulfillments": { "edges": [ { "node": { "id": "gid://shopify/ReturnableFulfillment/607470790", "fulfillment": { "id": "gid://shopify/Fulfillment/607470790", "displayStatus": "MARKED_AS_FULFILLED", "location": { "address": { "address1": "126 york street" } } } } } ] } } }