# nodes - admin-graphql - QUERY Version: 2024-10 ## Description Returns the list of nodes (any objects that implement the [Node](https://shopify.dev/api/admin-graphql/latest/interfaces/Node) interface) with the given IDs, in accordance with the [Relay specification](https://relay.dev/docs/guides/graphql-server-specification/#object-identification). ### Access Scopes ## Arguments * [ids](/docs/api/admin-graphql/2024-10/scalars/ID): ID! - The IDs of the Nodes to return. ## Returns * [id](/docs/api/admin-graphql/2024-10/scalars/ID): ID! A globally-unique ID. ## Examples ### Retrieve a list of objects using a nodes query 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 { nodes(ids: [\\\"gid://shopify/Product/108828309\\\", \\\"gid://shopify/GiftCard/924862292\\\", \\\"gid://shopify/Collection/142458073\\\"]) { id ... on Product { title } ... on GiftCard { balance { amount currencyCode } } ... on Collection { sortOrder } } }\"\n}'\n" Node example: "const client = new shopify.clients.Graphql({session});\nconst data = await client.query({\n data: `query {\n nodes(ids: [\"gid://shopify/Product/108828309\", \"gid://shopify/GiftCard/924862292\", \"gid://shopify/Collection/142458073\"]) {\n id\n ... on Product {\n title\n }\n ... on GiftCard {\n balance {\n amount\n currencyCode\n }\n }\n ... on Collection {\n sortOrder\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 nodes(ids: [\"gid://shopify/Product/108828309\", \"gid://shopify/GiftCard/924862292\", \"gid://shopify/Collection/142458073\"]) {\n id\n ... on Product {\n title\n }\n ... on GiftCard {\n balance {\n amount\n currencyCode\n }\n }\n ... on Collection {\n sortOrder\n }\n }\n }\nQUERY\n\nresponse = client.query(query: query)\n" Remix example: "const { admin } = await authenticate.admin(request);\n\nconst response = await admin.graphql(\n `#graphql\n query {\n nodes(ids: [\"gid://shopify/Product/108828309\", \"gid://shopify/GiftCard/924862292\", \"gid://shopify/Collection/142458073\"]) {\n id\n ... on Product {\n title\n }\n ... on GiftCard {\n balance {\n amount\n currencyCode\n }\n }\n ... on Collection {\n sortOrder\n }\n }\n }`,\n);\n\nconst data = await response.json();\n" Graphql query: "query {\n nodes(ids: [\"gid://shopify/Product/108828309\", \"gid://shopify/GiftCard/924862292\", \"gid://shopify/Collection/142458073\"]) {\n id\n ... on Product {\n title\n }\n ... on GiftCard {\n balance {\n amount\n currencyCode\n }\n }\n ... on Collection {\n sortOrder\n }\n }\n}" #### Graphql Input null #### Graphql Response { "data": { "nodes": [ { "id": "gid://shopify/Product/108828309", "title": "Draft" }, { "id": "gid://shopify/GiftCard/924862292", "balance": { "amount": "75.0", "currencyCode": "USD" } }, { "id": "gid://shopify/Collection/142458073", "sortOrder": "MANUAL" } ] } }