20,802 questions
3
votes
2
answers
201
views
Unspecific error for Firebase Data Connect nested SQL inserts with _execute
I need to insert data in multiple tables at once in my Firebase Data Connect db with native SQL. When calling the mutation from my cloud function it fails and Data Connect will always throw the same ...
Best practices
0
votes
0
replies
43
views
How can i use passportJS strategy with ApolloServer
I'm using the PassportJS GitHub strategy and ApolloServer. I'm opening a separate '4001' port for PassportJS and another '4000' port for GraphQL endpoints. My question is: How can I use PassportJS ...
0
votes
0
answers
21
views
Upwork public GraphQL: timeReport returns 403 team-action denial, workDiaryCompany returns empty, but internal agencyCompanyTimeReport returns data
I’m trying to get agency weekly timesheet data from Upwork via OAuth2 (official/public API).
I can successfully authorize as a user who has access in UI, and I can switch org context using tenant ...
Advice
1
vote
0
replies
48
views
how to fetch public projects for a particular user or list of users using GraphQL
So my goal is to build a map showcasing users contributions to the FOSS projects and I am trying to building it for my FOSS community. I was reading documentations of gitlab for few hours, I dont find ...
Advice
0
votes
1
replies
49
views
GraphQL interfaces cause incorrect inheritance
We use GraphQL to query mapped entities from 2 different products. Product A does not have entity inheritance, while Product B has inheritance.
Suppose we have the following mappings: entities A1 <-...
0
votes
0
answers
21
views
GitHub GraphQL Ref Query Format
In the GitHub API, there is an optional parameter when querying the refs object called query, which "Filters refs with query on name". Is the syntax for this query string documented ...
3
votes
0
answers
61
views
HotChocolate ISelection drops child collection JOINs in EF Core when projecting to a view model
I am hitting a wall combining HotChocolate's projection engine (ISelection) with Entity Framework Core when trying to project database entities into custom view models / DTOs.
Whenever I append ...
Best practices
0
votes
0
replies
53
views
Return type of a mutation which streams back data in GraphQL
Intro to the Problem
So imagine you need to have an API which should stream back a video/audio file, what would be the return type? If you have an example written in NodeJS or any other programming ...
Advice
0
votes
4
replies
96
views
Stratz and the STRATZ API
Perhaps someone has worked with or encountered the Stratz website and the STRATZ API (Dota 2 game statistics), which uses GraphQL. There is documentation. I have the following request enter image ...
3
votes
0
answers
69
views
How to hide GraphQL exceptions in strawberry and Django?
I am using GraphQL with strawberry in my Django project. When an exception is raised, the error is shown in the terminal like the server errors. But if a user make mistakes while creating a query, It ...
0
votes
1
answer
90
views
Paging of batch-loaded, nested fields in Spring GraphQL
I have the following schema structure (albeit with entity names changed):
type Artist {
name: String!
fans(first: Int, after: String, last: Int, before: String): FanConnection!
}
type ...
0
votes
0
answers
41
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
43
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
2
votes
1
replies
531
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
40
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 ...