--- title: node - Storefront API description: Returns a specific node by ID. api_version: 2025-01 api_name: storefront type: query api_type: graphql source_url: html: 'https://shopify.dev/docs/api/storefront/2025-01/queries/node' md: 'https://shopify.dev/docs/api/storefront/2025-01/queries/node.md' --- # node query Returns a specific node by ID. ## Arguments * id [ID!](https://shopify.dev/docs/api/storefront/2025-01/scalars/ID) required The ID of the Node to return. *** ## Possible returns * Node [Node](https://shopify.dev/docs/api/storefront/2025-01/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 * ### node reference ## Query Reference ```graphql { node(id) { # node fields } } ```