Concept Flow - Context argument
Client sends GraphQL query
GraphQL Server receives query
Server creates Context object
Resolver functions called with Context
Resolvers use Context for shared data
Resolvers return data
Server sends response to Client
The context argument is created once per request and passed to all resolvers, allowing them to share data like authentication info or database connections.