Context
The GraphQL context object used to pass the meta information between resolvers.
Sets a given value for a given key in the GraphQL context.
Retrieves a value using the given key from the GraphQL context.
Removes a value using the given key from the GraphQL context.
function set(string 'key, Cloneable | isolated object {} value)
Value to be set
function get(string 'key) returns Cloneable | isolated object {} | Error
The value if the key is present in the context, a graphql:Error otherwise
graphql:Error
function remove(string 'key) returns Cloneable | isolated object {} | Error