Tag: azure-api-management
-
Configuring Graphql Resolver with Azure Function and HttpTrigger by POST
0 I have an API Management Service in Azure, there I’m trying to configure my first mutation but I’m having troubles configuring the Resolver Policiy, let me share more details: Here is my mutation: my ResolverPolicy looks like this: <http-data-source> <http-request> <set-method>POST</set-method> <set-url>[URL]</set-url> <set-header name="Content-Type" exists-action="override"> <value>application/json</value> </set-header> <set-body>@{ var args = context.Request.Body.As<JObject>(true)["arguments"]; JObject jsonObject…
-
How to resolve union in Azure APIM synthetic GraphQL
0 We are kind of experimenting with synthetic GraphQL in Azure APIM, using resolver policies. Up until now everything was working fine, but we want to introduce unions and so far no matter what and how we tried, we couldn’t make the resolver work. Unfortunately we could find no usable documentation or tutorial/posts/etc on the…