-
Hi, Example: const server = new ApolloServer({ typeDefs, resolvers });
module.exports = server.createHandler(); and a normal azure function (used inside createHandler() ) we have const httpTrigger: AzureFunction = async function (context: Context, req: HttpRequest): Promise<void> {
....
} so I need access to the |
Beta Was this translation helpful? Give feedback.
Answered by
glasser
Jun 15, 2021
Replies: 1 comment 1 reply
-
As documented it is the
|
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
ntodorov
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
As documented it is the
context
option passed to yourcontext
function (these twocontext
s are different!)