Tag: http
-
Must a GraphQL field be a Query type to be mentioned in a query?
1 Say I have this GraphQL query: query GetUser($user_id: Int) { user(user_id: $user_id) { name } groups(user_id $user_id) { name } } This query recieves user id, and returns: user’s name names of all the groups this user belongs to I know that user should be defined in the SDL like this: type Query{ user(user_id:…
-
UnityWebRequest works only in the editor, not in the standalone build
-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…