0 I am planning to migrate my site from Shopify to Shopify Headless + Gatsby but I am having a problem with the plugin, gatsby-source-shopify. It can create nodes for products and product related data but not blog posts. Is there any way to get blog posts or do I have to create them manually […]
0 I currently have my logging configured as follows: LOGGING = { "version": 1, "disable_existing_loggers": False, "formatters": { "default": { "format": "{levelname} {asctime} {process} {module}: {message}", "style": "{", }, }, "handlers": { "console": { "level": "DEBUG", "class": "logging.StreamHandler", "formatter": "default", } }, "loggers": { "server": {"handlers": ["console"], "level": "DEBUG"}, "django": {"handlers": ["console"], "level": "INFO"}, "graphql.execution.utils": […]
0 I am currently trying to fire a GraphQL query several times on scroll and after each time store the result in local cache without overwriting the previous one. In React I could achieve this easily using local state and setting it to […oldData, …newData]. However I have no luck doing this via GraphQL. I’ve […]
9 I’m using Java Corretto 21.0.0.35.1 build 21+35-LTS, and the built-in Java HTTP client to retrieve a response as an InputStream. I’m making parallel requests using virtual threads, and for the most part, it’s working well. However, occasionally, my testing encounters a "Pinning" event, as seen in the stack trace below. I believed that the […]
0 Recently I have been working on GraphQL APIs. Due to the scalability of the project, I want to know if can i cache the response coming from apis. I know that we can use the query cache and schema cache facility from the lighthouse package. However, my concern is they cache the response during […]
-2 I am reading a book about GraphQL, and they claim that one strong point of GraphQL is selecting a field from the database. See sample below: On this image, they selected just the title from the movies on the database. I can do the same using mongoose, using "select". Could I say that mongoose […]
0 I’m trying to reach information from a GraphQL API with a Post. It’s the first time I’m working with this, and after some error I’m in a point that when the token is changed the error is ‘Unathorized’ and when I change the token the error is another one, so with that I think […]
0 I am using WordPress, ReactJS, WpGraphQL and Advanced Custom Fields. I am storing the TailwindCSS styles in a text string within ACF and I am getting that string returned in react via GraphQL. The problem is that the variable is not rendering the CSS styles in the string correctly. Posting my code will not […]
1 I am trying to consume a sample GraphQL api, just to learn it. For that I have created a .Net framework 4.8 based console application, its referencing GraphQL.Client, Abrstractions, Websocket, version 5.1.1.0, etc and Newtownsoft.Json version 13.0.0.0 When I try to debug it, the control disappears from the line graphQLClient.SendQueryAsync Please help me understand […]