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 […]
If you are looking to rank your local business on Google Maps in a specific area, this service is for you. Google Map Stacking is a highly effective technique for ranking your GMB within a specific mile radius. More info: Google Maps Pointers Thanks and Regards Mike Pass PS: Want a comprehensive local plan that […]
-2 Closed. This question needs details or clarity. It is not currently accepting answers. Want to improve this question? Add details and clarify the problem by editing this post. Closed 13 mins ago. Improve this question I am currently working on a project in which GraphQL is being implemented for the first time and initially […]
0 I have a system that is using Amplify Api to interact with a GraphQL api that is not part of an Amplify project. None of it was set up with the amplify-cli. I have a function that makes a call to the mutate function of the AmplifyCategory class. I would like to unit test […]
0 I am trying to integrate graphql in my android project.My package name is app.android.mylife. I have set apollo { packageName.set("app.android.mylife") } in my gradle file. I created the same package structure for graphql folder also. main-graphql-app-android-mylife->(here all graphql files) I am having schema.json file which is also integrated . And defined the query like […]
0 My code is correct, but I don’t know what’s happening, I need to upload it with graphQL but I can’t, my resolver code looks like this: `import { Resolver, Query, Mutation, Arg } from "type-graphql"; import { GraphQLUpload, FileUpload } from "graphql-upload-ts"; @Resolver() export class CategoryResolver { @Mutation(() => String) async uploadImage(@Arg("file", () => […]
-1 This very simple GraphQL Custom Scalar fails with the typescript error: TS2351: This expression is not constructable. Type ‘typeof import("…/graphql/node_modules/graphql/index")’ has no construct signatures. import GraphQLScalarType, { GraphQLInt } from ‘graphql’; export const CustomScalar = new GraphQLScalarType({ …GraphQLInt, name: "CustomScalar" }) what needs to be changed to get Typescript to compile it? typescript graphql […]