0 I am completely new to GraphQL – apologies if this is a stupid question. I have a Spring Boot application running GraphQL and have two endpoints as defined in my schema below: type Query { userById(id: ID): User getMe: User } type User { id: ID! email: String! firstName: String! lastName: String! } getMe […]
3 { Post { name } } While trying to retrieve all the entries on a content type, it only gives error of: "Argument "id" of required type "String!" was not provided." Since id field is required. How do I get all entries of a content type then? Ref: https://www.contentful.com/developers/docs/references/graphql/ graphql contentful Share Follow asked […]
0 I’m developing a React native app, and want to restore data saved on cache when the user opens the app again, but it’s offline. I was able to get the latest store by using store.getSource() and save it as a serialised JSON to the device storage. I do also recover and unserialise it, but […]
9 I know that the restrict qualifier in C specifies that the memory region pointed by two pointers should not overlap. It was my understanding that the Linux (not SUS) prototype for memcpy looks like – void* memcpy(void *restrict dest, const void *restrict src, size_t count); However, when I looked at man7.org/memcpy it seems that […]
0 I’m pretty new to GraphQL, I’m building an API and a React App that connects to it. I need some help defining my GraphQL schema, I can’t find out what I’m doing wrong, but my GraphQL schema keeps bringing a mapped Collection as nullable… I’ve been following the official docs (https://api-platform.com/docs/core/graphql/) but can’t find […]
0 I have a Rails + graphql service running on a different domain, but it seems the session variable in graphql_controller.rb is nil. When I run my service locally, the session and context works as expected. Here’s an example: # in graphql controller def execute context = { session: session, test_variable: "has access" } result […]
0 I am trying to fetch data from sorare using their GraphQL API. I have managed to find the pattern to make a query as follows: import requests # Define the GraphQL query query = """ { player(slug: "nico-schlotterbeck") { firstName lastName position cardPositions id slug activeClub { name } age so5Scores(last: 5) { score […]
0 I’m trying to run a React App using ApolloClient in node.js, and I receive the following error from Chrome Inspect: invariant.ts:12 Uncaught Invariant Violation: An error occurred! For more details, see the full error text at https://go.apollo.dev/c/err#%7B%22version%22%3A%223.8.2%22%2C%22message%22%3A47%2C%22args%22%3A%5B%5D%7D at new InvariantError (https://localhost:60422/static/js/0.chunk.js:76352:24) at invariant (https://localhost:60422/static/js/0.chunk.js:76363:11) at invariant (https://localhost:60422/static/js/0.chunk.js:9980:67) at useApolloClient (https://localhost:60422/static/js/0.chunk.js:7980:80) at useQuery (https://localhost:60422/static/js/0.chunk.js:8412:103) at […]
0 I have this combined typeDefs (allTypeDefs) file: ["@link(url: "https://specs.apollo.dev/federation/v2.3", import: ["@key","@external"]) scalar Date type Name { first_name: String! middle_name: String last_name: String } type Safe @key(fields: "safe_id"){ safe_id: ID! owner: User! # HAS_SAFE wallets: [Wallet!]! } type User @key(fields: "user_id") { user_id: ID! email: String! role: String! permissions: [String!]! created_at: Date! updated_at: Date! username: […]