# nodes **Type:** GraphQL queries **Description:** Retrieve multiple objects in the graph by their globally unique identifiers. Like the `node` query, this query returns any entities that implement the `Node` interface, but allows you to request several objects in a single call by passing a list of IDs. It’s useful when resolving multiple references at once — for example, when reconstructing relationships between entities or populating a list by ID. ## Arguments - ids (ID): A list of globally unique identifiers (`id`) of the objects to retrieve. ## Response **Type:** Node **Description:** A globally identifiable object in the GraphQL schema. All core entities in this API implement the `Node` interface, which guarantees that they have a unique `id` field, enabling consistent caching, pagination, and reference resolution across the API. ### Fields - id (ID): A globally unique identifier for the object.