nodes
Lists references to entities that implement the Node interface by extracting their type (__typename)
from the supplied IDs, which are IRIs.
Arguments
ids [ID!]! Required
Response
Returns [Node]! .Example
Query
query Nodes($ids: [ID!]!) { nodes(ids: $ids) { id }}Variables
{"ids": ["opaqueId"]}Response
{"data": {"nodes": [{"id": "opaqueId"}]}}