Tag: graphql
-
Unnecessary reload needed to load new user data on login with apollo and graphql
0 so I had this problem for a while now and its driving me crazy. There was one answer on here however it did not help at all. So I am here to post my code to see if someone would be able to discern my stupidity. Login component: import React, { useState, useCallback, useEffect…
-
Artillery Performance Testing for Graph ql endpoints in yml file (not able to see debug log or what went wrong after execution)
0 I am using artillery node JS based tool for performance testing with yml based scenario. I have installed all the plugin library I am able to run artillery test But I am not able to see logs for what is wrong in my graph ql request and what is response. I tried to set…
-
Graphql “Unknown argument “bookId” on field “book” of type “Explore”.”
0 I’m trying to call my API but it keeps giving me 400 Error request with the error of: message: "Unknown argument "bookId" on field "book" of type "Explore"." I’ve just read the documentation of Apollo graphql and tried to fetch my data the way it said with variables and args, and it’s in my…
-
Lead Platform Engineer- 100% Remote- 12+months – Khayainfotech – Remote
Khayainfotech Remote $80 – $90 Contract: Independent, W2, 12 Month(s) Skills GraphQL Agile Node.js Javascript Job Description Hi, Job Title: Lead Platform Engineer Project Duration : 12 months Work Location:100% Remote Description: As a Sr.Lead Platform Engineer, Platform Engineering – Digital APIs you will be responsible for the technical and architectural mentorship for Client’s…
-
Data Modeler_Houston,TX – Sparity – Houston, TX
Sparity Houston, TX Depends on Experience Accepts corp to corp applications, Contract: W2, Independent Work from home Skills SQL GraphQL Job Description Hi, Hope you are Doing good, Tittle : Data Modeler Location : Houston, TX Duration : 6+ Months Job Description : Analysing and translating business needs into long-term solution…
-
Uncaught (in promise) GraphQLError: Syntax Error: Unexpected character: “.” using GraphQl in Vue
-1 I’m using graphql in Vue and I came up with this problem! This is my code for calling graphql in store: async fetchBookContent({ commit }, data) { let token = data.token let bookId = data.bookId const ALL_BOOKS_QUERIES = gql` query { book(args:{token:${token},bookId:${bookId}}){ information{ name } } } ` const { result } = useQuery(ALL_BOOKS_QUERIES)…
-
Hot Chocolate, AWS EC2 docker instance
0 i have deployed asp.net in docker on ec2 instance ECS, with load balancer controller weatherforecast working corectly hotchocolate graphql UI doesnt work on aws, on localhost docker works fine. I test on postman, and works fine, schema fetched. Can you help with aws settings, for graphql working My actual program.cs builder.Services.AddGraphQLServer().AddQueryType<GraphQls>(); builder.Services.AddCors( options =>…
-
Validation error with zodValidationPipe in nestjs
0 I have the following graphql. input UpdateStudentInput { name: String motherName: String birthDate: String gender: Gender email: String password: String avatar: String } And I have the following mutation: updateStudent(updateStudentInput: UpdateStudentInput!, studentId: String): Student! but when I try to mutate I get a validation error : mutation { updateStudent(updateStudentInput: { name: "Abner Matheus Gomes…
-
Can GraphQL handle XML responses where single item arrays are converted to dictionaries?
2 I’m currently working on a GraphQL/Node/Express server that retrieves data from another API. I have absolutely no access to the other API except for the data I receive back. My problem is that the response is XML and there are certain fields that should be returned as arrays but instead are being returned as…
-
WordPress gatsby graphql need sorting on children
0 On the following graphql I need sorting/order on the WPChildren with the ‘menuOrder’ item… query ($id: String!) { allWpPage( filter: {id: {eq: $id}} ) { edges { node { id title uri content children { id } blocks } } nodes { wpChildren { nodes { id … on WpPage { id title uri…