Questions

  • FREE fast ranks for letslearngraphql.com

    Hi there Just checked your letslearngraphql.com baclink profile, I noticed a moderate percentage of toxic links pointing to your website We will investigate each link for its toxicity and perform a professional clean up for you free of charge. Start recovering your ranks today: Professional linksprofile Clean up Service Regards Mike Arnold Hilkom Digital SEO […]

  • Unable to connect to WPGraphQL

    0 I am new to building with Gatsby and wordpress. when i run "gatsby develop", i get this error on my command line "Unable to connect to WPGraphQL, Either WPGraphQL is not active or there are some WordPress PHP filters in your site which are adding additional output to the GraphQL response. These may have […]

  • How to dynamically define GraphQL query string, given typescript types based on GraphQL schema?

    0 I have a Node application where I have generated typescript types from GraphQL schema. My service is going to receive GraphQL Object and attributes details in an API request. The service has to form a GraphQL query string and return in the response. For example, If the request is ‘Object.attribute = value’, then the […]

  • how to pass date variable to graphQL call in svelte?

    1 I have a graphql file with a date in ISO format. I would like to pass a variable instead of hard-coding the date. I would like to use Date.toISOstring() or some get current date method. GRAPHQL FILE let today = Date.toISOString() //or DateNow() query guide { tv { guide(date: "2022-08-10T00:00:00Z <-replace–${today}") { entries { […]

  • Graphql-go Has No Built-In Validation For Argument/Variables Passed On?

    1 I am building golang graphql endpoint with graphql-go https://github.com/graphql-go/graphql Here is chunk of my resolver.go func GetRootMutation(db *gorm.DB, req *http.Request) *graphql.Object { rootMutation := graphql.NewObject(graphql.ObjectConfig{ Name: "RootMutation", Fields: graphql.Fields{ "send_otp_email": SendOtpEmail(db, req), }, }) return rootMutation } func SendOtpEmail(db *gorm.DB, req *http.Request) *graphql.Field { return &graphql.Field{ Type: graphqlGlobal.ResultType, Description: "Send OTP to user’s email.", […]

  • How to make Rails app with Graphql to take “name” and “repos” from api.github?

    -1 A form in which you need to enter GitHub_login, after processing the form, display the github name and the list of repos. Example: Enter: dhh Output: David Heinemeier Hansson actioncable asset-hosting-with-minimum-ss1 bundler The server should process requests using GraphQL (https://github.com/rmosolgo/graphql-ruby). It should pull data from GitHub and process it. To get data from GitHub, […]

  • Support for multiple paths pointing to different graphql schema

    0 I have two graphql schemas that we can say one as admin and one as internal and i need to map each with a separate graphql endpoint as:- Schema – admin.graphqls, internal.graphqls /graphql/admin and /graphql/internal however the exposed configuration property we have in spring-boot-starter-graphql is a string so possible only one endpoint can be […]

  • Graphql requests returning 429, but working fine when using http.client or when running curl in terminal

    0 Using below requests returns 429 status code, but when same request is used in curl, and by using Python http.client library, i get 200 status code and data. What can be issue where requests gives 429 but I get data through other clients and in curl url="www.xyz.co.in/graphql", headers={ "User-Agent": "CFNetwork/1485 Darwin/23.1.0", "Client-Info": "ios.com.expedia.booking,2023.45,external", "Content-Type": […]

  • Target class [App\GraphQl\Types\Admin\CitiesType] does not exist

    0 I am using graphql in laravel project every thing work fine at localhost but when i deploy to server namecheap i faced this problime Target class [AppGraphQlTypesAdminCitiesType] does not exist. "exception": "IlluminateContractsContainerBindingResolutionException", I am using Postman for request to graphql this is my type <?php namespace AppGraphQlTypesAdmin; use AppModelsCities; use GraphQLTypeDefinitionType; use RebingGraphQLSupportType as […]

  • onConnvect, graphql-ws subscription

    0 thank you for your time, my problem is that i want to return the data to the client immediately after subscribing. I know about the onConnect method, but it is called before JwtAuthGuard. What is the best way to do this? I was thinking of moving the authorization logic to onConnect. To better understand […]