Questions

  • Strawberry Shake error using gzip compression

    0 I am following the official Strawberry Shake guide: https://chillicream.com/docs/strawberryshake/v13/get-started/console Specifically Step 4: Add a GraphQL client to your project using the CLI tools I run this command: dotnet graphql init https://integrate.somecloud.com/graphql -n SomeClient -p ./StrawberryShakeConsole –headers Accept-Encoding=gzip –tokenEndpoint https://integrate.somecloud.com/auth –token eyJhbGciOiJIUzI1… I receive the following error: Download schema started. Download schema completed in 557 […]

  • TypeORM Entity Association Returns Null for Related Fields in GraphQL Nexus Schema

    0 I’m currently building a GraphQL API using TypeORM and Nexus Schema. I’ve defined several entities with associations between them, such as Product, Brand, and User. The problem I’m facing is that when I query the Product entity using GraphQL, the related fields like category_id and brand_id are returning null values even though there is […]

  • Scraping GraphQL Cloudflare protected site

    -1 I got the following website: https://sportsbet.io. This website makes some XHR (POST) requests to https://sportsbet.io/graphql. This data is retrieved properly when I navigate the webpage using a browsers. However I wish to replicate this behaviour in either Postman or Python requests (httpx) but both seem to return me a 403 Forbidden. I wrote the […]

  • NestJs GraphQL : Unable To set and Get Cookie

    0 I am working on nestJS Graphql Project , and the problem is that when i send the cookie it is not setting on client and if i manually put the cookie it cant read also , but the thing that amazing me is when i login on sever by graphql playground it is setting […]

  • Undefined return value from getStaticProps

    0 The value being returned from my getStaticProps in nextjs is undefined. I tried fetching data from a graphql endpoint and the return value was undefined when I console.log the value. This is the code block const graphQuery = new GraphQLClient(url); export const getStaticProps = async () => { const { course } = await […]

  • What is enum DataSource.Link in flutter ferry?

    0 I am looking at this code in the file operation_response.dart from ferry_exec 0.3.1 https://pub.dev/packages/ferry_exec enum DataSource { /// A placeholder response source which can be used when waiting for another source None, /// Data originated from the client’s [Link] Link, /// Data originated from the [Cache] Cache, /// Data originated from a user-provided [OperationRequest.optimisticResponse] […]

  • Utilize the best advertising for your products and services!

    Good day! letslearngraphql.com Did you know that it is possible to send appeal utterly legitimately? We provide a new legal method of sending letters through feedback forms. Feedback forms like these can be seen on a lot of websites. When such letters are sent, no personal data is utilized, and messages are sent to securely-designed […]

  • Misunderstanding about microservices authentication and authorization

    0 I have three graphql microservices gateway (@mercurius/gateway) user-service travels service. My thoughts for implementation. When a client (react-native app) send a request to register a user, the api gateway allows it to hit user-service without authentication. Once at the user-service, the user is created and token is issued and send back to the client. […]

  • strapi collection types in gatsby missing

    0 I have created some single types and som collection types in strapi. In my gatsby project, in the the gatsby-config.js file, I have placed the names of the single types and the collection type. collectionTypes: [‘heronodes’], singleTypes: [‘message’, ‘intro’, ‘hero’, ‘footer’], I can see all the single types in the graphql playground in gatsby, […]

  • Shopify App Image File Upload Through GraphQL API – Processing Error

    0 I’m working on a shopify app using node js and react with graphql. Here is what I’m trying to achieve, the client when using my Shopify app has a dropzone where he can upload images, I’m trying to save those images to the files in his store, I keep getting the processor error when […]