Concept Flow - Node interface pattern
Client sends query with node ID
Server receives node ID
Resolve node by ID
Find User
Return User
Return Node with __typename
Client receives node
The Node interface pattern lets clients fetch any object by a global ID. The server resolves the ID to the correct type and returns the object with its type info.