--- title: nodes - Storefront API description: Returns the list of nodes with the given IDs. api_version: 2025-10 api_name: storefront type: query api_type: graphql source_url: html: https://shopify.dev/docs/api/storefront/latest/queries/nodes md: https://shopify.dev/docs/api/storefront/latest/queries/nodes.md --- # nodes query Returns the list of nodes with the given IDs. ## Arguments * ids [\[ID!\]!](https://shopify.dev/docs/api/storefront/latest/scalars/ID) required The IDs of the Nodes to return. The input must not contain more than `250` values. *** ## Possible returns * Node [\[Node\]!](https://shopify.dev/docs/api/storefront/latest/interfaces/Node) An object with an ID field to support global identification, in accordance with the [Relay specification](https://relay.dev/graphql/objectidentification.htm#sec-Node-Interface). This interface is used by the [node](https://shopify.dev/docs/api/storefront/latest/queries/node) and [nodes](https://shopify.dev/docs/api/storefront/latest/queries/nodes) queries. *** ## Examples * ### nodes reference ## Query Reference ```graphql { nodes(ids) { # nodes fields } } ```