0 I have 2 services in my system, which both have their own subgraphs. Product Service, which is "smart" i.e. knows about different product types and Suggestions Service which is rather "dumb" i.e. only knows that there are some products, but nothing about specific types. So the 2 subgraphs look something like the following: Product […]
0 Simple models, we have a user and a user is part of topics. The linking is done through a pivot table. Both users and topics have the correct relationships. The query works. But. Now we need to add the pagination to it. type User { id: ID! uuid: String! email: String! api_token: String! devices: […]
0 So im trying to implement graphql in flutter, using bloc too. I think i already did all the necessary part, but when i try to hit the graphql, it return response like this HttpLinkParserException (ResponseFormatException(originalException: FormatException: Unexpected character (at character 1) here is my graphql function – void _onLoginButtonPressed( LoginButtonPressed event, Emitter<LoginState> emit) async […]
6 I just tested modifying a table in my PostgreSQL db through DBeaver and it seems to have broken the db when looking at the data from the Hasura (Graphql) console. I simply added a column from Dbeaver. In Hasura I get an error "no such column exists". Anyone have any idea why or how […]
0 we’re trying to connect an Amplify Studio project to the Visual Studio Code Interface using the Amplify CLI and we run into the following problem when trying to fetch data. We’ve updated our code and configured the AWS as well. The current error that we’re running into : import { API, graphqlOperation } from […]
6 There’s lots of GUI clients like GraphQL Playground, GraphiQl, etc. with ability of getting GraphQL schema from the URL. How can I get the schema with Python? python python-3.x python-requests graphql Share Improve this question Follow asked Dec 10, 2018 at 23:30 Igor ZaliznyakIgor Zaliznyak 6311 silver badge33 bronze badges 5 Answers 5 Sorted […]
0 Using graphQL for github, I cannot get the full set of members in an organization. Using this GraphQL I get 45 users: query {node(id: "#@#@#$@#$##$#@") { … on Organization { membersWithRole (first: 100) { totalCount nodes { login id name createdAt, updatedAt} }}}} and same with this one: organization(login: "OrgName") { membersWithRole(first:100) { totalCount […]
0 I use MAC and GraphQL Playground App. I ran into trouble when I couldn’t see anything at the GraphQL Playground App. How can I fix it? The Screen is like Photo graphql Share Follow asked 1 hour ago lionflicklionflick 1933 bronze badges Load 3 more related questions Show fewer related questions 0 Sorted by: […]
-1 I noticed that UnityWebRequest is working BUT only in editor mode. When I build the game (in this case Im building Standalone for Windows 10) the response code is "200", but the {response.webRequest.downloadHandler.text} is equal to: "{"Errors":[{"extensions":{"internal":{"no connection to the server…. ecc… I knew that if response code equals 200 it means the connection […]