Retrieve the object ID in GraphQL
问题 I'd like to know whether it is possible to get the "original id" of an object as the result of the query. Whenever I make a request to the server, it returns the node "global identifier", something like U29saWNpdGFjYW9UeXBlOjEzNTkxOA== . The query is similar to this one: { allPatients(active: true) { edges { cursor node { id state name } } } and the return is: { "data": { "edges": [ { "cursor": "YXJyYXljb25uZWN0aW9uOjA=", "node": { "id": "U29saWNpdGFjYW9UeXBlOjEzNTkxOA==", "state": "ARI",