nodes
Returns a list of references to entities that implements the Node interface by extracting their type (__typename) from the supplied ids, which should be IRIs. (https://docs.indeed.com/api/common/objects/ID)
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"}]}}