graphql/yoga-server/docs/integrations/integration-with-aws-lambda #3434
Replies: 3 comments 6 replies
|
AWS API Gateway does not support |
|
How does this work with API gateway? The example only works for Function URLs, not API Gateway |
|
Hi, I’m running into an issue with GraphQL Yoga not being recognized in my Bun + Hono setup. Here’s what I did: I created a fresh project using Bun and Hono → everything worked fine. I’ve already tried: Running bun install again Here is a minimal example of my setup: import { Hono } from 'hono' const app = new Hono() app.get('/', (c) => { export default app The issue appears right after importing or using graphql-yoga. Could you help me understand: If there are compatibility issues between Bun, Hono, and GraphQL Yoga? Thanks in advance! |
Uh oh!
There was an error while loading. Please reload this page.
graphql/yoga-server/docs/integrations/integration-with-aws-lambda
AWS Lambda is a serverless computing platform that makes it easy to build applications that run on the AWS cloud. GraphQL Yoga is platform agnostic so they can fit together easily.
https://the-guild.dev/graphql/yoga-server/docs/integrations/integration-with-aws-lambda
All reactions