node
Returns a reference to an entity that implements the Node interface by extracting its type (__typename) from the supplied id, which should be an IRI. (https://docs.indeed.com/api/common/objects/ID)
Arguments
id ID! Required
Response
Returns Node .Example
Query
query Node($id: ID!) { node(id: $id) { id }}Variables
{"id": "opaqueId"}Response
{"data": {"node": {"id": "opaqueId"}}}