20,850 questions
-4
votes
0
answers
27
views
Is there a way to enforce a limit on batch requests in Apollo Server? [closed]
I understand Apollo Server by default disables batch requests, but suppose I want to enable them and enforce a limit?
I thought I'd might be able to look at the GraphQLRequestContext from ...
-1
votes
0
answers
23
views
Appsync Graphql Subscription problem with IAM Authentication
I have a React App that receives a temporary credential from a lambda to create a connection to the Appsync via IAM Credential with those credentials and subscribe to a specific mutation.
The ...
-1
votes
0
answers
24
views
GraphQL error need permissions: MANAGE_ORDERS [closed]
I am currently developing an e-commerce web application using Saleor + Vue. On the admin dashboard page (admin.vue), I am getting a GraphQL error:
To access this path you need one of the following ...
0
votes
0
answers
23
views
Docker Compose Neo4j container is unhealthy and app fails with ECONNREFUSED on Bolt port 7687
I have a Docker Compose setup with Redis, Neo4j, and a Node.js service. This setup used to work, but now Docker refuses to start my web container because the Neo4j container is marked as unhealthy.
...
0
votes
0
answers
37
views
How to implement SEO-friendly 301 redirects for old Shopify URLs in a PERN stack app (Next.js + Express + Prisma + PostgreSQL)
I’m migrating my e-commerce store from Shopify to a custom PERN stack application, and I need to implement permanent 301 redirects from old product and category URLs to new URLs while preserving SEO.
...
Best practices
1
vote
1
replies
66
views
How the websites like fastdl downloads story from instagram
I was curious to understand how Instagram downloaders work. From what I understand, they use Instagram’s GraphQL API endpoints to fetch posts, reels, and photos. However, downloading stories without ...
0
votes
1
answer
33
views
Houdini not able to pull schema. "ERROR: couldn't pull your schema: resp.text is not a function"
I have a SvelteKit project where i am trying to query a GraphQL endpoint and get end to end typesafety using Houdini.
I run npx houdini init in my repository and get the following error:
⚠️ Couldn't ...
0
votes
1
answer
49
views
Get customer subscription contracts
I'm using the Shopify subscription APP to manage the subscriptions. The custom APP uses subscription-based module, so we need the customer subscription information when they log in. If customer ...
0
votes
1
answer
143
views
Springboot v4 GraphQL not making use of custom JsonMapper
I have been working on upgrading SpringBoot microservices from v3.5.7 to v4.0.0. Included in this upgrade is a Jackson upgrade from v2 to v3. The service in question is making a GraphQL request to ...
2
votes
0
answers
118
views
NPE when using Batch-Resolver (@Source List<>) with Openliberty's GraphQL Implementation
Environment:
OpenLiberty(25.0.0.12 -> https://openliberty.io/start/#gradle) with mpGraphQL-2.0 feature
MicroProfile GraphQL API 2.0
Java 21
I'm trying to use batch resolvers in MicroProfile ...
0
votes
1
answer
87
views
How to set product dimensions (length, width, height, weight) using Shopify GraphQL Admin API?
I’m trying to create/update a product in Shopify using the Admin GraphQL API.
My goal is to set product dimensions (length, width, height) and weight for shipping.
I’m using the productSet mutation, ...
Best practices
0
votes
1
replies
47
views
Flutter ferry multiple queries same type?
I'm using Flutter & ferry for the first time, I'm trying to get three lists from a GraphQL API:
popular "manga"
trending "manga"
user's reading "manga"
Via ferry I'...
0
votes
1
answer
50
views
GraphQl Query - Not Equal condition
Trying to figure out the opposite of '=' in this example query from this page:
https://www.ibm.com/docs/en/filenet-p8-platform/5.6.0?topic=development-search-api-considerations
{
documents(
...
1
vote
1
answer
68
views
Langchain4j and Quarkus AI Services - Not using annotated @Tool to call remote GraphQL API
I have a question about Quarkus Langchain4j.
I have made this Quarkus (Java 25) project with the purpose of exposing an API that receives a search text, processes it with an "extractor” AI ...
Tooling
0
votes
0
replies
27
views
Easy mappings for GraphQL requests without using the GraphQL Client
I am trying to send requests to an API that uses GraphQL for its data filtering. The problem I am having that I need to build each request manually through a string interpolation which is easier said ...