├── .changeset ├── README.md ├── config.json ├── lucky-sheep-occur.md └── witty-years-send.md ├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.md ├── actions │ └── install-playwright-binaries │ │ └── action.yml └── workflows │ ├── benchmark.yml │ ├── ci.yml │ ├── pr.yml │ ├── release.yml │ ├── website-integrity.yml │ └── website.yml ├── .gitignore ├── .husky └── pre-commit ├── .mise.toml ├── .node-version ├── .npmrc ├── .prettierignore ├── .vscode ├── extensions.json └── settings.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── babel.config.js ├── benchmark ├── .gitignore ├── CHANGELOG.md ├── k6.js ├── package.json ├── schema.ts ├── start-server.ts └── tsconfig.json ├── e2e ├── README.md ├── index.ts ├── package.json ├── tests │ ├── aws-lambda.ts │ ├── azure-function.ts │ ├── cf-modules.ts │ ├── cf-worker.ts │ ├── create-cf-deployment.ts │ ├── docker.ts │ └── vercel.ts ├── types.ts └── utils.ts ├── examples ├── apollo-federation-compatibility │ ├── .gitignore │ ├── codegen.yaml │ ├── docker-compose.yaml │ ├── package.json │ ├── schema.graphql │ ├── scripts │ │ └── bundle.js │ ├── src │ │ ├── index.ts │ │ └── resolvers-types.ts │ └── tsconfig.json ├── apollo-federation │ ├── CHANGELOG.md │ ├── README.md │ ├── __integration-tests__ │ │ └── apollo-federation.spec.ts │ ├── gateway │ │ ├── CHANGELOG.md │ │ ├── gateway.js │ │ ├── index.js │ │ └── package.json │ ├── package.json │ └── service │ │ ├── CHANGELOG.md │ │ ├── index.js │ │ ├── package.json │ │ ├── typeDefs.js │ │ └── yoga.js ├── apollo-managed-federation │ ├── README.md │ ├── package.json │ ├── src │ │ └── index.ts │ └── tsconfig.json ├── aws-lambda │ ├── .gitignore │ ├── README.md │ ├── bin │ │ └── graphql-lambda.ts │ ├── cdk.json │ ├── lambda │ │ ├── CHANGELOG.md │ │ ├── awslambda.d.ts │ │ ├── graphql.ts │ │ └── package.json │ ├── lib │ │ └── graphql-lambda-stack.ts │ ├── package.json │ ├── scripts │ │ └── bundle.js │ └── tsconfig.json ├── azure-function │ ├── .funcignore │ ├── .gitignore │ ├── host.json │ ├── package.json │ ├── scripts │ │ └── bundle.js │ └── src │ │ └── functions │ │ └── index.ts ├── bun-pothos │ ├── CHANGELOG.md │ ├── __integration-tests__ │ │ └── bun-pothos.spec.ts │ ├── package.json │ ├── src │ │ └── index.ts │ └── tsconfig.json ├── bun-yoga-ws │ ├── __integration-tests__ │ │ └── bun.spec.ts │ ├── package.json │ ├── src │ │ └── index.ts │ └── tsconfig.json ├── bun │ ├── __integration-tests__ │ │ └── bun.spec.ts │ ├── package.json │ ├── src │ │ └── index.ts │ └── tsconfig.json ├── cloudflare-advanced │ ├── .gitignore │ ├── CHANGELOG.md │ ├── package.json │ ├── src │ │ └── index.ts │ ├── tsconfig.json │ └── wrangler.toml ├── cloudflare-modules │ ├── CHANGELOG.md │ ├── __integration-tests__ │ │ └── index.spec.ts │ ├── jest.config.js │ ├── package.json │ ├── src │ │ └── index.ts │ ├── tsconfig.json │ └── wrangler.toml ├── cookies │ ├── __integration-tests__ │ │ └── cookies.spec.ts │ ├── package.json │ └── src │ │ ├── app.ts │ │ └── index.ts ├── defer-stream │ ├── CHANGELOG.md │ ├── README.md │ ├── __integration-tests__ │ │ ├── __snapshots__ │ │ │ └── defer-stream.spec.ts.snap │ │ └── defer-stream.spec.ts │ ├── package.json │ ├── src │ │ ├── index.ts │ │ └── yoga.ts │ └── tsconfig.json ├── deno │ ├── index.ts │ ├── package.json │ ├── test.ts │ ├── tsconfig.json │ └── yoga.ts ├── egg │ ├── .gitignore │ ├── __integration-tests__ │ │ └── egg.spec.ts │ ├── app │ │ ├── graphql │ │ │ ├── handler.ts │ │ │ ├── index.ts │ │ │ └── module │ │ │ │ ├── schema.ts │ │ │ │ └── test │ │ │ │ ├── resolver.ts │ │ │ │ └── schema.ts │ │ └── router.ts │ ├── config │ │ ├── config.default.ts │ │ └── plugin.ts │ ├── package.json │ └── tsconfig.json ├── error-handling │ ├── CHANGELOG.md │ ├── README.md │ ├── __integration-tests__ │ │ └── error-handling.spec.ts │ ├── package.json │ ├── src │ │ ├── index.ts │ │ └── yoga.ts │ └── tsconfig.json ├── express-helmet │ ├── __integration-tests__ │ │ ├── express.spec.ts │ │ └── fixtures │ │ │ └── file.txt │ ├── package.json │ ├── src │ │ ├── app.ts │ │ └── index.ts │ └── tsconfig.json ├── express │ ├── CHANGELOG.md │ ├── __integration-tests__ │ │ ├── express.spec.ts │ │ └── fixtures │ │ │ └── file.txt │ ├── package.json │ ├── src │ │ ├── app.ts │ │ └── index.ts │ └── tsconfig.json ├── fastify-modules │ ├── CHANGELOG.md │ ├── __integration-test__ │ │ └── fastify-modules.spec.ts │ ├── package.json │ ├── src │ │ ├── app.ts │ │ ├── index.ts │ │ └── modules │ │ │ └── basic │ │ │ ├── index.ts │ │ │ ├── providers.ts │ │ │ ├── resolvers.ts │ │ │ └── typeDefs │ │ │ └── schema.graphql │ └── tsconfig.json ├── fastify │ ├── CHANGELOG.md │ ├── __integration-tests__ │ │ └── fastify.spec.ts │ ├── package.json │ ├── src │ │ ├── app.ts │ │ └── index.ts │ └── tsconfig.json ├── file-upload-nextjs-pothos │ ├── .gitignore │ ├── CHANGELOG.md │ ├── README.md │ ├── __integration-tests__ │ │ └── file-upload-nextjs-pothos.spec.ts │ ├── next-env.d.ts │ ├── package.json │ ├── pages │ │ └── api │ │ │ └── graphql.ts │ ├── schema.ts │ └── tsconfig.json ├── file-upload-nexus │ ├── CHANGELOG.md │ ├── __integration-tests__ │ │ └── file-upload-nexus.spec.ts │ ├── index.ts │ ├── package.json │ ├── tsconfig.json │ └── yoga.ts ├── file-upload │ ├── CHANGELOG.md │ ├── __integration-tests__ │ │ ├── file-upload.spec.ts │ │ └── fixtures │ │ │ └── image.jpg │ ├── index.ts │ ├── package.json │ ├── tsconfig.json │ └── yoga.ts ├── firebase │ ├── .firebaserc │ ├── .gitignore │ ├── firebase.json │ └── functions │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── package.json │ │ ├── src │ │ └── index.ts │ │ └── tsconfig.json ├── gcp-cloud-run │ ├── CHANGELOG.md │ ├── Dockerfile │ ├── package.json │ └── src │ │ └── index.js ├── gcp-functions │ ├── package.json │ ├── src │ │ └── index.ts │ └── tsconfig.json ├── generic-auth │ ├── CHANGELOG.md │ ├── README.md │ ├── __integration-tests__ │ │ └── generic-auth.spec.ts │ ├── package.json │ ├── src │ │ ├── app.ts │ │ └── main.ts │ └── tsconfig.json ├── graphql-armor │ ├── CHANGELOG.md │ ├── README.md │ ├── __integration-tests__ │ │ └── graphql-armor.spec.ts │ ├── package.json │ ├── src │ │ ├── main.ts │ │ └── yoga.ts │ └── tsconfig.json ├── graphql-sse │ ├── package.json │ ├── src │ │ ├── app.ts │ │ └── index.ts │ └── tsconfig.json ├── graphql-ws │ ├── CHANGELOG.md │ ├── __integration-tests__ │ │ └── graphql-ws.spec.ts │ ├── package.json │ ├── src │ │ ├── app.ts │ │ └── index.ts │ └── tsconfig.json ├── hackernews │ ├── .gitignore │ ├── CHANGELOG.md │ ├── README.md │ ├── __integration-tests__ │ │ ├── hackernews.spec.ts │ │ └── prisma__migrate.d.ts │ ├── codegen.ts │ ├── package.json │ ├── prisma │ │ ├── migrations │ │ │ ├── 20220223111842_init │ │ │ │ └── migration.sql │ │ │ └── 20220223114846_comments │ │ │ │ └── migration.sql │ │ └── schema.prisma │ ├── src │ │ ├── context.ts │ │ ├── main.ts │ │ ├── schema.ts │ │ ├── schema │ │ │ └── base │ │ │ │ ├── resolvers │ │ │ │ ├── Comment.ts │ │ │ │ ├── Link.ts │ │ │ │ ├── Mutation │ │ │ │ │ ├── postCommentOnLink.ts │ │ │ │ │ └── postLink.ts │ │ │ │ └── Query │ │ │ │ │ ├── comment.ts │ │ │ │ │ ├── feed.ts │ │ │ │ │ ├── info.ts │ │ │ │ │ └── link.ts │ │ │ │ ├── schema.graphql │ │ │ │ └── schema.mappers.ts │ │ ├── script.ts │ │ └── utils.ts │ └── tsconfig.json ├── hapi │ ├── __integration-tests__ │ │ └── hapi.spec.ts │ ├── package.json │ ├── src │ │ ├── app.ts │ │ └── index.ts │ └── tsconfig.json ├── hello-world │ ├── CHANGELOG.md │ ├── README.md │ ├── index.js │ └── package.json ├── issue-template │ ├── .codesandbox │ │ └── Dockerfile │ ├── CHANGELOG.md │ ├── package.json │ ├── src │ │ └── main.ts │ └── tsconfig.json ├── koa │ ├── CHANGELOG.md │ ├── __integration-tests__ │ │ └── koa.spec.ts │ ├── package.json │ ├── src │ │ ├── app.ts │ │ └── index.ts │ └── tsconfig.json ├── live-query │ ├── CHANGELOG.md │ ├── package.json │ ├── src │ │ └── main.ts │ └── tsconfig.json ├── nestjs-apollo-federation-compatibility │ ├── docker-compose.yaml │ ├── package.json │ ├── schema.graphql │ ├── scripts │ │ └── bundle.js │ ├── src │ │ ├── app.module.ts │ │ ├── deprecated-products.resolver.ts │ │ ├── inventory.resolver.ts │ │ ├── main.ts │ │ ├── product-research.resolver.ts │ │ ├── products.resolver.ts │ │ └── users.resolver.ts │ └── tsconfig.json ├── netlify-edge │ ├── .gitignore │ ├── .netlify │ │ ├── edge-functions-import-map.json │ │ └── state.json │ ├── __integration-tests__ │ │ └── netlify-edge.spec.ts │ ├── build.js │ ├── index.html │ ├── netlify.toml │ ├── package.json │ └── src │ │ └── index.ts ├── nextjs-app │ ├── .eslintrc.json │ ├── .gitignore │ ├── CHANGELOG.md │ ├── README.md │ ├── __integration-tests__ │ │ ├── nextjs-app.spec.ts │ │ └── utils.ts │ ├── app │ │ ├── api │ │ │ └── graphql │ │ │ │ └── route.ts │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── page.tsx │ ├── next-env.d.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── public │ │ ├── next.svg │ │ └── vercel.svg │ └── tsconfig.json ├── nextjs-auth │ ├── .env.sample │ ├── .eslintrc.json │ ├── .gitignore │ ├── CHANGELOG.md │ ├── README.md │ ├── next-env.d.ts │ ├── next.config.js │ ├── package.json │ ├── pages │ │ ├── _app.tsx │ │ ├── api │ │ │ ├── auth │ │ │ │ └── [...nextauth].ts │ │ │ └── graphql.ts │ │ └── index.tsx │ ├── public │ │ ├── favicon.ico │ │ └── logo.svg │ ├── styles │ │ ├── Home.module.css │ │ └── globals.css │ └── tsconfig.json ├── nextjs-legacy-pages │ ├── .eslintrc.json │ ├── .gitignore │ ├── CHANGELOG.md │ ├── README.md │ ├── __integration-tests__ │ │ └── nextjs-legacy.spec.ts │ ├── next-env.d.ts │ ├── next.config.js │ ├── package.json │ ├── pages │ │ ├── _app.tsx │ │ ├── api │ │ │ └── graphql.ts │ │ └── index.tsx │ ├── public │ │ ├── favicon.ico │ │ └── logo.svg │ ├── scripts │ │ └── bundle.js │ ├── styles │ │ ├── Home.module.css │ │ └── globals.css │ └── tsconfig.json ├── nextjs-ws │ ├── .gitignore │ ├── README.md │ ├── __integration-tests__ │ │ └── nextjs-ws.spec.ts │ ├── next-env.d.ts │ ├── next.config.mjs │ ├── package.json │ ├── pages │ │ ├── _app.tsx │ │ └── index.tsx │ ├── public │ │ ├── favicon.ico │ │ └── logo.svg │ ├── server.js │ ├── styles │ │ ├── Home.module.css │ │ └── globals.css │ └── tsconfig.json ├── node-esm │ ├── CHANGELOG.md │ ├── __integration-tests__ │ │ └── esm.spec.mjs │ ├── index.mjs │ ├── jest.config.js │ ├── package.json │ └── yoga.mjs ├── node-ts │ ├── __integration-tests__ │ │ └── node-ts.spec.ts │ ├── build.js │ ├── package.json │ ├── src │ │ ├── index.ts │ │ └── yoga.ts │ └── tsconfig.json ├── pothos │ ├── __integration-tests__ │ │ └── pothos.spec.ts │ ├── package.json │ ├── src │ │ ├── index.ts │ │ └── yoga.ts │ └── tsconfig.json ├── redis-pub-sub │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ └── main.ts │ └── tsconfig.json ├── request-cancelation │ ├── package.json │ ├── src │ │ └── main.ts │ └── tsconfig.json ├── response-cache │ ├── __integration-tests__ │ │ └── response-cache.spec.ts │ ├── package.json │ ├── src │ │ └── main.ts │ └── tsconfig.json ├── service-worker │ ├── .gitignore │ ├── CHANGELOG.md │ ├── README.md │ ├── __integration-tests__ │ │ └── integration.spec.ts │ ├── package.json │ ├── src │ │ └── index.ts │ ├── tsconfig.json │ └── wrangler.toml ├── sofa │ ├── __integration-tests__ │ │ └── sofa.spec.ts │ ├── package.json │ ├── src │ │ ├── index.ts │ │ └── yoga.ts │ └── tsconfig.json ├── subscriptions │ ├── .gitignore │ ├── CHANGELOG.md │ ├── README.md │ ├── codegen.yml │ ├── package.json │ ├── src │ │ └── index.ts │ └── tsconfig.json ├── sveltekit │ ├── .eslintrc.mjs │ ├── .gitignore │ ├── .npmrc │ ├── .prettierrc │ ├── .svelte-kit │ │ └── tsconfig.json │ ├── CHANGELOG.md │ ├── README.md │ ├── __integration-tests__ │ │ └── sveltekit.spec.ts │ ├── package.json │ ├── ponyfill.js │ ├── src │ │ ├── app.html │ │ ├── global.d.ts │ │ └── routes │ │ │ ├── +page.svelte │ │ │ └── api │ │ │ └── graphql │ │ │ └── +server.ts │ ├── static │ │ └── favicon.png │ ├── svelte.config.js │ ├── tsconfig.json │ └── vite.config.ts └── uwebsockets │ ├── __integration-tests__ │ └── uwebsockets.test.ts │ ├── package.json │ ├── src │ ├── app.ts │ └── index.ts │ └── tsconfig.json ├── import-map.json ├── jest.config.js ├── package.json ├── packages ├── client │ ├── apollo-link │ │ ├── CHANGELOG.md │ │ ├── __integration-tests__ │ │ │ └── apollo-link.spec.ts │ │ ├── package.json │ │ └── src │ │ │ └── index.ts │ └── urql-exchange │ │ ├── CHANGELOG.md │ │ ├── __integration-tests__ │ │ └── urql-exchange.spec.ts │ │ ├── package.json │ │ └── src │ │ └── index.ts ├── event-target │ ├── redis-event-target │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── __tests__ │ │ │ ├── redis-event-target.spec.ts │ │ │ └── serializer.spec.ts │ │ ├── package.json │ │ └── src │ │ │ └── index.ts │ └── typed-event-target │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── package.json │ │ └── src │ │ └── index.ts ├── graphiql │ ├── CHANGELOG.md │ ├── README.md │ ├── index.html │ ├── package.json │ ├── src │ │ ├── YogaGraphiQL.tsx │ │ ├── YogaLogo.tsx │ │ ├── bundle.tsx │ │ ├── declarations.d.ts │ │ └── styles.css │ └── vite.config.ts ├── graphql-yoga │ ├── CHANGELOG.md │ ├── README.md │ ├── __integration-tests__ │ │ ├── browser.spec.ts │ │ ├── file-uploads.spec.ts │ │ ├── fixtures │ │ │ └── image.png │ │ ├── graphql-scalars.spec.ts │ │ ├── http2.spec.ts │ │ ├── incremental-delivery.spec.ts │ │ ├── node-http.spec.ts │ │ └── subscription.spec.ts │ ├── __tests__ │ │ ├── 404.spec.ts │ │ ├── 500.spec.ts │ │ ├── accept-header.spec.ts │ │ ├── batching.spec.ts │ │ ├── context.spec.ts │ │ ├── custom-serializer.spec.ts │ │ ├── error-masking.spec.ts │ │ ├── getEnveloped.spec.ts │ │ ├── getparser-json.spec.ts │ │ ├── graphql-http.spec.ts │ │ ├── graphql-over-http.spec.ts │ │ ├── graphql-sse.spec.ts │ │ ├── health-check.spec.ts │ │ ├── http-extensions.spec.ts │ │ ├── instruments.spec.ts │ │ ├── introspection.spec.ts │ │ ├── logging.spec.ts │ │ ├── plugin-hooks.spec.ts │ │ ├── readiness-check.spec.ts │ │ ├── recipes.spec.ts │ │ ├── request-cancellation.spec.ts │ │ ├── requests.spec.ts │ │ ├── schema.spec.ts │ │ ├── subscriptions.spec.ts │ │ ├── utilities.ts │ │ └── validation-cache.spec.ts │ ├── package.json │ ├── scripts │ │ ├── generate-graphiql-html.js │ │ └── inject-version.js │ ├── src │ │ ├── error.ts │ │ ├── graphiql.html │ │ ├── index.ts │ │ ├── landing-page.html │ │ ├── plugins │ │ │ ├── allowed-headers.spec.ts │ │ │ ├── allowed-headers.ts │ │ │ ├── plugins.test.ts │ │ │ ├── request-parser │ │ │ │ ├── get.ts │ │ │ │ ├── post-form-url-encoded.ts │ │ │ │ ├── post-graphql-string.ts │ │ │ │ ├── post-json.ts │ │ │ │ ├── post-multipart.ts │ │ │ │ └── utils.ts │ │ │ ├── request-validation │ │ │ │ ├── use-check-graphql-query-params.ts │ │ │ │ ├── use-check-method-for-graphql.ts │ │ │ │ ├── use-http-validation-error.spec.ts │ │ │ │ ├── use-http-validation-error.ts │ │ │ │ ├── use-limit-batching.ts │ │ │ │ └── use-prevent-mutation-via-get.ts │ │ │ ├── result-processor │ │ │ │ ├── accept.ts │ │ │ │ ├── multipart.ts │ │ │ │ ├── regular.ts │ │ │ │ ├── sse.ts │ │ │ │ └── stringify.ts │ │ │ ├── types.ts │ │ │ ├── use-cors.spec.ts │ │ │ ├── use-error-coordinate.ts │ │ │ ├── use-execution-cancellation.ts │ │ │ ├── use-graphiql.spec.ts │ │ │ ├── use-graphiql.ts │ │ │ ├── use-health-check.ts │ │ │ ├── use-parser-and-validation-cache.ts │ │ │ ├── use-readiness-check.ts │ │ │ ├── use-request-parser.ts │ │ │ ├── use-result-processor.ts │ │ │ ├── use-schema.ts │ │ │ └── use-unhandled-route.ts │ │ ├── process-request.ts │ │ ├── schema.ts │ │ ├── server.ts │ │ ├── subscription.ts │ │ ├── types.ts │ │ └── utils │ │ │ ├── create-lru-cache.ts │ │ │ └── mask-error.ts │ └── type-api-check.ts ├── logger │ ├── CHANGELOG.md │ ├── package.json │ └── src │ │ └── index.ts ├── nestjs-federation │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ └── src │ │ └── index.ts ├── nestjs │ ├── CHANGELOG.md │ ├── README.md │ ├── __tests__ │ │ ├── fixtures │ │ │ └── graphql │ │ │ │ ├── app.module.ts │ │ │ │ └── cats │ │ │ │ ├── cats-request-scoped.service.ts │ │ │ │ ├── cats.guard.ts │ │ │ │ ├── cats.module.ts │ │ │ │ ├── cats.resolvers.ts │ │ │ │ ├── cats.service.ts │ │ │ │ ├── cats.types.graphql │ │ │ │ └── interfaces │ │ │ │ └── cat.interface.ts │ │ ├── graphql-http.spec.ts │ │ ├── graphql-ws.spec.ts │ │ ├── graphql.spec.ts │ │ ├── subscriptions-transport-ws.spec.ts │ │ ├── subscriptions.spec.ts │ │ └── utils │ │ │ └── pubsub.ts │ ├── package.json │ └── src │ │ └── index.ts ├── plugins │ ├── apollo-inline-trace │ │ ├── CHANGELOG.md │ │ ├── __tests__ │ │ │ ├── apollo-inline-trace.spec.ts │ │ │ ├── apollo-inline-trace.yoga-gateway.spec.ts │ │ │ └── fixtures │ │ │ │ ├── getStitchedSchemaFromLocalSchemas.ts │ │ │ │ ├── subgraph1.ts │ │ │ │ └── subgraph2.ts │ │ ├── package.json │ │ └── src │ │ │ └── index.ts │ ├── apollo-managed-federation │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ └── test │ │ │ ├── apollo-managed-federation.spec.ts │ │ │ └── fixtures │ │ │ └── supergraph.ts │ ├── apollo-usage-report │ │ ├── CHANGELOG.md │ │ ├── __tests__ │ │ │ └── apollo-usage-report.spec.ts │ │ ├── package.json │ │ └── src │ │ │ ├── index.ts │ │ │ ├── reporter.ts │ │ │ └── stats.ts │ ├── apq │ │ ├── CHANGELOG.md │ │ ├── __integration-tests__ │ │ │ └── apollo-client.test.ts │ │ ├── __tests__ │ │ │ └── apq.spec.ts │ │ ├── package.json │ │ └── src │ │ │ └── index.ts │ ├── csrf-prevention │ │ ├── CHANGELOG.md │ │ ├── __tests__ │ │ │ └── csrf-prevention.spec.ts │ │ ├── package.json │ │ └── src │ │ │ └── index.ts │ ├── defer-stream │ │ ├── CHANGELOG.md │ │ ├── __integration-tests__ │ │ │ └── defer-stream.spec.ts │ │ ├── __tests__ │ │ │ ├── defer-stream.spec.ts │ │ │ ├── push-pull-async-iterable.ts │ │ │ └── validations │ │ │ │ ├── defer-stream-directive-label.spec.ts │ │ │ │ ├── defer-stream-directive-on-root-field.spec.ts │ │ │ │ ├── harness.ts │ │ │ │ ├── overlapping-fields-can-be-merged.spec.ts │ │ │ │ └── stream-directive-on-list-field.spec.ts │ │ ├── package.json │ │ └── src │ │ │ ├── index.ts │ │ │ └── validations │ │ │ ├── defer-stream-directive-label.ts │ │ │ ├── defer-stream-directive-on-root-field.ts │ │ │ ├── overlapping-fields-can-be-merged.ts │ │ │ └── stream-directive-on-list-field.ts │ ├── disable-introspection │ │ ├── CHANGELOG.md │ │ ├── __tests__ │ │ │ └── disable-introspection.spec.ts │ │ ├── package.json │ │ └── src │ │ │ └── index.ts │ ├── graphql-sse │ │ ├── CHANGELOG.md │ │ ├── __tests__ │ │ │ └── graphql-sse.spec.ts │ │ ├── package.json │ │ └── src │ │ │ └── index.ts │ ├── jwt │ │ ├── CHANGELOG.md │ │ ├── package.json │ │ └── src │ │ │ ├── __tests__ │ │ │ └── jwt.spec.ts │ │ │ ├── config.ts │ │ │ ├── index.ts │ │ │ ├── plugin.ts │ │ │ └── utils.ts │ ├── persisted-operations │ │ ├── CHANGELOG.md │ │ ├── __tests__ │ │ │ ├── persisted-operations-errors.spec.ts │ │ │ └── persisted-operations.spec.ts │ │ ├── package.json │ │ └── src │ │ │ └── index.ts │ ├── prometheus │ │ ├── CHANGELOG.md │ │ ├── __integration-tests__ │ │ │ └── graphql-ws.test.ts │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ └── tests │ │ │ └── prometheus.spec.ts │ ├── response-cache │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── __tests__ │ │ │ ├── etag.spec.ts │ │ │ └── response-cache.spec.ts │ │ ├── package.json │ │ └── src │ │ │ └── index.ts │ └── sofa │ │ ├── CHANGELOG.md │ │ ├── package.json │ │ ├── src │ │ ├── __tests__ │ │ │ └── sofa.spec.ts │ │ ├── index.ts │ │ └── types.ts │ │ └── tests │ │ └── sofa.test.ts ├── render-apollo-sandbox │ ├── CHANGELOG.md │ ├── package.json │ └── src │ │ └── index.ts ├── render-graphiql │ ├── .gitignore │ ├── CHANGELOG.md │ ├── package.json │ ├── scripts │ │ └── yoga-bundle-string.mjs │ └── src │ │ └── index.ts └── subscription │ ├── CHANGELOG.md │ ├── package.json │ └── src │ ├── create-pub-sub.ts │ ├── createPubSub.spec.ts │ ├── index.ts │ ├── operator │ ├── filter.spec.ts │ ├── filter.ts │ ├── map.spec.ts │ └── map.ts │ └── utils │ └── pipe.ts ├── patches ├── @changesets__assemble-release-plan@5.2.3.patch ├── formdata-node@4.4.1.patch ├── jest-environment-node.patch ├── jest-leak-detector.patch └── package-up.patch ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── prettier.config.mjs ├── renovate.json ├── scripts └── override-graphql-version.js ├── tsconfig.build.json ├── tsconfig.json ├── vercel.json └── website ├── .gitignore ├── next-env.d.ts ├── next-sitemap.config.js ├── next.config.ts ├── package.json ├── playwright.config.ts ├── postcss.config.js ├── public ├── assets │ ├── ecosystem.svg │ ├── http.svg │ ├── logo.svg │ ├── subscriptions.svg │ ├── tutorial │ │ └── basic │ │ │ ├── 04-a-simple-query │ │ │ └── hello-world.png │ │ │ ├── 05-a-simple-mutation │ │ │ ├── feed-link-query-response.png │ │ │ └── post-link-mutation-response.png │ │ │ └── 06-adding-a-database │ │ │ ├── prisma-autocomplete-mutation.png │ │ │ └── prisma-autocomplete-query.png │ └── yogaHome.svg ├── banner.svg ├── cover.png └── logo.png ├── remote-files ├── v2.json ├── v3.json └── v4.json ├── route-lockfile.txt ├── scripts ├── fetch-remote-filepaths.ts └── sitemap-ci.ts ├── src ├── app │ ├── (landing-pages) │ │ ├── faq.mdx │ │ ├── icons │ │ │ ├── apollo-icon.svg │ │ │ ├── arrow-up-icon.svg │ │ │ ├── check-icon.svg │ │ │ ├── error-warning-icon.svg │ │ │ ├── graphql-icon.svg │ │ │ ├── pulse-line-icon.svg │ │ │ ├── puzzle-icon.svg │ │ │ ├── safe-line-icon.svg │ │ │ ├── server-line-icon.svg │ │ │ └── timer-line-icon.svg │ │ ├── layout.tsx │ │ ├── man-in-black-clothing-practicing-yoga-minimalistic.png │ │ ├── page.tsx │ │ ├── practice-yoga-section.tsx │ │ ├── reach-zen-quicker-with-yoga.tsx │ │ ├── runs-anywhere.tsx │ │ └── truly-extendable.tsx │ ├── [...mdxPath] │ │ └── page.tsx │ ├── _meta.tsx │ ├── changelogs │ │ └── [...slug] │ │ │ └── page.tsx │ ├── codegen-callout.mdx │ ├── comparison-table.mdx │ ├── env.d.ts │ ├── favicon.ico │ ├── giscus.tsx │ ├── global.css │ ├── icon.svg │ ├── layout.tsx │ ├── legacy-docs-banner.mdx │ ├── metadata.tsx │ ├── v2 │ │ └── [[...slug]] │ │ │ └── page.tsx │ ├── v3 │ │ └── [[...slug]] │ │ │ └── page.tsx │ ├── v4 │ │ └── [[...slug]] │ │ │ └── page.tsx │ ├── version-dropdown.client.tsx │ └── versioned-search.tsx ├── content │ ├── docs │ │ ├── _meta.ts │ │ ├── comparison.mdx │ │ ├── features │ │ │ ├── _meta.ts │ │ │ ├── apollo-federation.mdx │ │ │ ├── automatic-persisted-queries.mdx │ │ │ ├── context.mdx │ │ │ ├── cookies.mdx │ │ │ ├── cors.mdx │ │ │ ├── csrf-prevention.mdx │ │ │ ├── defer-stream.mdx │ │ │ ├── envelop-plugins.mdx │ │ │ ├── error-masking.mdx │ │ │ ├── execution-cancellation.mdx │ │ │ ├── explicit-resource-management.mdx │ │ │ ├── file-uploads.mdx │ │ │ ├── graphiql.mdx │ │ │ ├── health-check.mdx │ │ │ ├── introspection.mdx │ │ │ ├── jwt.mdx │ │ │ ├── landing-page.mdx │ │ │ ├── logging-and-debugging.mdx │ │ │ ├── monitoring.mdx │ │ │ ├── parsing-and-validation-caching.mdx │ │ │ ├── persisted-operations.mdx │ │ │ ├── request-batching.mdx │ │ │ ├── request-customization.mdx │ │ │ ├── response-caching.mdx │ │ │ ├── schema.mdx │ │ │ ├── sofa-api.mdx │ │ │ ├── subscriptions.mdx │ │ │ └── testing.mdx │ │ ├── index.mdx │ │ ├── integrations │ │ │ ├── _meta.ts │ │ │ ├── integration-with-aws-lambda.mdx │ │ │ ├── integration-with-azure-functions.mdx │ │ │ ├── integration-with-bun.mdx │ │ │ ├── integration-with-cloudflare-workers.mdx │ │ │ ├── integration-with-deno.mdx │ │ │ ├── integration-with-express.mdx │ │ │ ├── integration-with-fastify.mdx │ │ │ ├── integration-with-gcp.mdx │ │ │ ├── integration-with-hapi.mdx │ │ │ ├── integration-with-koa.mdx │ │ │ ├── integration-with-nestjs.mdx │ │ │ ├── integration-with-nextjs.mdx │ │ │ ├── integration-with-sveltekit.mdx │ │ │ ├── integration-with-uwebsockets.mdx │ │ │ └── z-other-environments.mdx │ │ ├── migration │ │ │ ├── _meta.ts │ │ │ ├── migration-from-apollo-server.mdx │ │ │ ├── migration-from-express-graphql.mdx │ │ │ ├── migration-from-yoga-v1.mdx │ │ │ ├── migration-from-yoga-v2.mdx │ │ │ ├── migration-from-yoga-v3.mdx │ │ │ └── migration-from-yoga-v4.mdx │ │ └── prepare-for-production.mdx │ └── tutorial │ │ ├── _meta.ts │ │ ├── advanced │ │ ├── 00-introduction.mdx │ │ ├── 01-authentication.mdx │ │ ├── 02-subscriptions.mdx │ │ └── 03-advanced-sorting.mdx │ │ └── basic │ │ ├── 01-project-setup.mdx │ │ ├── 02-getting-started.mdx │ │ ├── 03-graphql-server.mdx │ │ ├── 04-a-simple-query.mdx │ │ ├── 05-a-simple-mutation.mdx │ │ ├── 06-adding-a-database.mdx │ │ ├── 07-connecting-server-and-database.mdx │ │ ├── 08-graph-relations.mdx │ │ ├── 09-error-handling.mdx │ │ ├── 10-filtering-and-pagination.mdx │ │ ├── 11-setting-up-graphql-code-generator.mdx │ │ ├── 12-summary.mdx │ │ └── index.mdx ├── fonts │ ├── PPNeueMontreal-Medium.woff2 │ ├── PPNeueMontreal-Regular.woff2 │ └── PPNeueMontreal-SemiBold.woff2 └── mdx-components.ts ├── tailwind.config.ts ├── test └── e2e │ ├── .gitignore │ ├── homepage-screenshot.spec.ts │ └── homepage-screenshot.spec.ts-snapshots │ └── homepage-above-the-fold-chromium-darwin.png └── tsconfig.json /.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/.changeset/README.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.changeset/lucky-sheep-occur.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/.changeset/lucky-sheep-occur.md -------------------------------------------------------------------------------- /.changeset/witty-years-send.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/.changeset/witty-years-send.md -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/actions/install-playwright-binaries/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/.github/actions/install-playwright-binaries/action.yml -------------------------------------------------------------------------------- /.github/workflows/benchmark.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/.github/workflows/benchmark.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/website-integrity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/.github/workflows/website-integrity.yml -------------------------------------------------------------------------------- /.github/workflows/website.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/.github/workflows/website.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | pnpm lint-staged 2 | -------------------------------------------------------------------------------- /.mise.toml: -------------------------------------------------------------------------------- 1 | [tools] 2 | node = "24" 3 | -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | v25 2 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/.prettierignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | packages/graphql-yoga/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/babel.config.js -------------------------------------------------------------------------------- /benchmark/.gitignore: -------------------------------------------------------------------------------- 1 | reports 2 | -------------------------------------------------------------------------------- /benchmark/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/benchmark/CHANGELOG.md -------------------------------------------------------------------------------- /benchmark/k6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/benchmark/k6.js -------------------------------------------------------------------------------- /benchmark/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/benchmark/package.json -------------------------------------------------------------------------------- /benchmark/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/benchmark/schema.ts -------------------------------------------------------------------------------- /benchmark/start-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/benchmark/start-server.ts -------------------------------------------------------------------------------- /benchmark/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/benchmark/tsconfig.json -------------------------------------------------------------------------------- /e2e/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/e2e/README.md -------------------------------------------------------------------------------- /e2e/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/e2e/index.ts -------------------------------------------------------------------------------- /e2e/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/e2e/package.json -------------------------------------------------------------------------------- /e2e/tests/aws-lambda.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/e2e/tests/aws-lambda.ts -------------------------------------------------------------------------------- /e2e/tests/azure-function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/e2e/tests/azure-function.ts -------------------------------------------------------------------------------- /e2e/tests/cf-modules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/e2e/tests/cf-modules.ts -------------------------------------------------------------------------------- /e2e/tests/cf-worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/e2e/tests/cf-worker.ts -------------------------------------------------------------------------------- /e2e/tests/create-cf-deployment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/e2e/tests/create-cf-deployment.ts -------------------------------------------------------------------------------- /e2e/tests/docker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/e2e/tests/docker.ts -------------------------------------------------------------------------------- /e2e/tests/vercel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/e2e/tests/vercel.ts -------------------------------------------------------------------------------- /e2e/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/e2e/types.ts -------------------------------------------------------------------------------- /e2e/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/e2e/utils.ts -------------------------------------------------------------------------------- /examples/apollo-federation-compatibility/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/apollo-federation-compatibility/.gitignore -------------------------------------------------------------------------------- /examples/apollo-federation-compatibility/codegen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/apollo-federation-compatibility/codegen.yaml -------------------------------------------------------------------------------- /examples/apollo-federation-compatibility/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/apollo-federation-compatibility/docker-compose.yaml -------------------------------------------------------------------------------- /examples/apollo-federation-compatibility/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/apollo-federation-compatibility/package.json -------------------------------------------------------------------------------- /examples/apollo-federation-compatibility/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/apollo-federation-compatibility/schema.graphql -------------------------------------------------------------------------------- /examples/apollo-federation-compatibility/scripts/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/apollo-federation-compatibility/scripts/bundle.js -------------------------------------------------------------------------------- /examples/apollo-federation-compatibility/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/apollo-federation-compatibility/src/index.ts -------------------------------------------------------------------------------- /examples/apollo-federation-compatibility/src/resolvers-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/apollo-federation-compatibility/src/resolvers-types.ts -------------------------------------------------------------------------------- /examples/apollo-federation-compatibility/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/apollo-federation-compatibility/tsconfig.json -------------------------------------------------------------------------------- /examples/apollo-federation/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/apollo-federation/CHANGELOG.md -------------------------------------------------------------------------------- /examples/apollo-federation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/apollo-federation/README.md -------------------------------------------------------------------------------- /examples/apollo-federation/gateway/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/apollo-federation/gateway/CHANGELOG.md -------------------------------------------------------------------------------- /examples/apollo-federation/gateway/gateway.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/apollo-federation/gateway/gateway.js -------------------------------------------------------------------------------- /examples/apollo-federation/gateway/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/apollo-federation/gateway/index.js -------------------------------------------------------------------------------- /examples/apollo-federation/gateway/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/apollo-federation/gateway/package.json -------------------------------------------------------------------------------- /examples/apollo-federation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/apollo-federation/package.json -------------------------------------------------------------------------------- /examples/apollo-federation/service/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/apollo-federation/service/CHANGELOG.md -------------------------------------------------------------------------------- /examples/apollo-federation/service/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/apollo-federation/service/index.js -------------------------------------------------------------------------------- /examples/apollo-federation/service/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/apollo-federation/service/package.json -------------------------------------------------------------------------------- /examples/apollo-federation/service/typeDefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/apollo-federation/service/typeDefs.js -------------------------------------------------------------------------------- /examples/apollo-federation/service/yoga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/apollo-federation/service/yoga.js -------------------------------------------------------------------------------- /examples/apollo-managed-federation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/apollo-managed-federation/README.md -------------------------------------------------------------------------------- /examples/apollo-managed-federation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/apollo-managed-federation/package.json -------------------------------------------------------------------------------- /examples/apollo-managed-federation/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/apollo-managed-federation/src/index.ts -------------------------------------------------------------------------------- /examples/apollo-managed-federation/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/apollo-managed-federation/tsconfig.json -------------------------------------------------------------------------------- /examples/aws-lambda/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/aws-lambda/.gitignore -------------------------------------------------------------------------------- /examples/aws-lambda/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/aws-lambda/README.md -------------------------------------------------------------------------------- /examples/aws-lambda/bin/graphql-lambda.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/aws-lambda/bin/graphql-lambda.ts -------------------------------------------------------------------------------- /examples/aws-lambda/cdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/aws-lambda/cdk.json -------------------------------------------------------------------------------- /examples/aws-lambda/lambda/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/aws-lambda/lambda/CHANGELOG.md -------------------------------------------------------------------------------- /examples/aws-lambda/lambda/awslambda.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/aws-lambda/lambda/awslambda.d.ts -------------------------------------------------------------------------------- /examples/aws-lambda/lambda/graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/aws-lambda/lambda/graphql.ts -------------------------------------------------------------------------------- /examples/aws-lambda/lambda/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/aws-lambda/lambda/package.json -------------------------------------------------------------------------------- /examples/aws-lambda/lib/graphql-lambda-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/aws-lambda/lib/graphql-lambda-stack.ts -------------------------------------------------------------------------------- /examples/aws-lambda/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/aws-lambda/package.json -------------------------------------------------------------------------------- /examples/aws-lambda/scripts/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/aws-lambda/scripts/bundle.js -------------------------------------------------------------------------------- /examples/aws-lambda/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/aws-lambda/tsconfig.json -------------------------------------------------------------------------------- /examples/azure-function/.funcignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/azure-function/.funcignore -------------------------------------------------------------------------------- /examples/azure-function/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/azure-function/.gitignore -------------------------------------------------------------------------------- /examples/azure-function/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/azure-function/host.json -------------------------------------------------------------------------------- /examples/azure-function/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/azure-function/package.json -------------------------------------------------------------------------------- /examples/azure-function/scripts/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/azure-function/scripts/bundle.js -------------------------------------------------------------------------------- /examples/azure-function/src/functions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/azure-function/src/functions/index.ts -------------------------------------------------------------------------------- /examples/bun-pothos/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/bun-pothos/CHANGELOG.md -------------------------------------------------------------------------------- /examples/bun-pothos/__integration-tests__/bun-pothos.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/bun-pothos/__integration-tests__/bun-pothos.spec.ts -------------------------------------------------------------------------------- /examples/bun-pothos/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/bun-pothos/package.json -------------------------------------------------------------------------------- /examples/bun-pothos/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/bun-pothos/src/index.ts -------------------------------------------------------------------------------- /examples/bun-pothos/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/bun-pothos/tsconfig.json -------------------------------------------------------------------------------- /examples/bun-yoga-ws/__integration-tests__/bun.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/bun-yoga-ws/__integration-tests__/bun.spec.ts -------------------------------------------------------------------------------- /examples/bun-yoga-ws/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/bun-yoga-ws/package.json -------------------------------------------------------------------------------- /examples/bun-yoga-ws/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/bun-yoga-ws/src/index.ts -------------------------------------------------------------------------------- /examples/bun-yoga-ws/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/bun-yoga-ws/tsconfig.json -------------------------------------------------------------------------------- /examples/bun/__integration-tests__/bun.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/bun/__integration-tests__/bun.spec.ts -------------------------------------------------------------------------------- /examples/bun/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/bun/package.json -------------------------------------------------------------------------------- /examples/bun/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/bun/src/index.ts -------------------------------------------------------------------------------- /examples/bun/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/bun/tsconfig.json -------------------------------------------------------------------------------- /examples/cloudflare-advanced/.gitignore: -------------------------------------------------------------------------------- 1 | worker/ 2 | -------------------------------------------------------------------------------- /examples/cloudflare-advanced/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/cloudflare-advanced/CHANGELOG.md -------------------------------------------------------------------------------- /examples/cloudflare-advanced/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/cloudflare-advanced/package.json -------------------------------------------------------------------------------- /examples/cloudflare-advanced/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/cloudflare-advanced/src/index.ts -------------------------------------------------------------------------------- /examples/cloudflare-advanced/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/cloudflare-advanced/tsconfig.json -------------------------------------------------------------------------------- /examples/cloudflare-advanced/wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/cloudflare-advanced/wrangler.toml -------------------------------------------------------------------------------- /examples/cloudflare-modules/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/cloudflare-modules/CHANGELOG.md -------------------------------------------------------------------------------- /examples/cloudflare-modules/__integration-tests__/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/cloudflare-modules/__integration-tests__/index.spec.ts -------------------------------------------------------------------------------- /examples/cloudflare-modules/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/cloudflare-modules/jest.config.js -------------------------------------------------------------------------------- /examples/cloudflare-modules/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/cloudflare-modules/package.json -------------------------------------------------------------------------------- /examples/cloudflare-modules/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/cloudflare-modules/src/index.ts -------------------------------------------------------------------------------- /examples/cloudflare-modules/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/cloudflare-modules/tsconfig.json -------------------------------------------------------------------------------- /examples/cloudflare-modules/wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/cloudflare-modules/wrangler.toml -------------------------------------------------------------------------------- /examples/cookies/__integration-tests__/cookies.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/cookies/__integration-tests__/cookies.spec.ts -------------------------------------------------------------------------------- /examples/cookies/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/cookies/package.json -------------------------------------------------------------------------------- /examples/cookies/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/cookies/src/app.ts -------------------------------------------------------------------------------- /examples/cookies/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/cookies/src/index.ts -------------------------------------------------------------------------------- /examples/defer-stream/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/defer-stream/CHANGELOG.md -------------------------------------------------------------------------------- /examples/defer-stream/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/defer-stream/README.md -------------------------------------------------------------------------------- /examples/defer-stream/__integration-tests__/defer-stream.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/defer-stream/__integration-tests__/defer-stream.spec.ts -------------------------------------------------------------------------------- /examples/defer-stream/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/defer-stream/package.json -------------------------------------------------------------------------------- /examples/defer-stream/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/defer-stream/src/index.ts -------------------------------------------------------------------------------- /examples/defer-stream/src/yoga.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/defer-stream/src/yoga.ts -------------------------------------------------------------------------------- /examples/defer-stream/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/defer-stream/tsconfig.json -------------------------------------------------------------------------------- /examples/deno/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/deno/index.ts -------------------------------------------------------------------------------- /examples/deno/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/deno/package.json -------------------------------------------------------------------------------- /examples/deno/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/deno/test.ts -------------------------------------------------------------------------------- /examples/deno/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/deno/tsconfig.json -------------------------------------------------------------------------------- /examples/deno/yoga.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/deno/yoga.ts -------------------------------------------------------------------------------- /examples/egg/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/egg/.gitignore -------------------------------------------------------------------------------- /examples/egg/__integration-tests__/egg.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/egg/__integration-tests__/egg.spec.ts -------------------------------------------------------------------------------- /examples/egg/app/graphql/handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/egg/app/graphql/handler.ts -------------------------------------------------------------------------------- /examples/egg/app/graphql/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/egg/app/graphql/index.ts -------------------------------------------------------------------------------- /examples/egg/app/graphql/module/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/egg/app/graphql/module/schema.ts -------------------------------------------------------------------------------- /examples/egg/app/graphql/module/test/resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/egg/app/graphql/module/test/resolver.ts -------------------------------------------------------------------------------- /examples/egg/app/graphql/module/test/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/egg/app/graphql/module/test/schema.ts -------------------------------------------------------------------------------- /examples/egg/app/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/egg/app/router.ts -------------------------------------------------------------------------------- /examples/egg/config/config.default.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/egg/config/config.default.ts -------------------------------------------------------------------------------- /examples/egg/config/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/egg/config/plugin.ts -------------------------------------------------------------------------------- /examples/egg/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/egg/package.json -------------------------------------------------------------------------------- /examples/egg/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/egg/tsconfig.json -------------------------------------------------------------------------------- /examples/error-handling/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/error-handling/CHANGELOG.md -------------------------------------------------------------------------------- /examples/error-handling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/error-handling/README.md -------------------------------------------------------------------------------- /examples/error-handling/__integration-tests__/error-handling.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/error-handling/__integration-tests__/error-handling.spec.ts -------------------------------------------------------------------------------- /examples/error-handling/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/error-handling/package.json -------------------------------------------------------------------------------- /examples/error-handling/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/error-handling/src/index.ts -------------------------------------------------------------------------------- /examples/error-handling/src/yoga.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/error-handling/src/yoga.ts -------------------------------------------------------------------------------- /examples/error-handling/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/error-handling/tsconfig.json -------------------------------------------------------------------------------- /examples/express-helmet/__integration-tests__/express.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/express-helmet/__integration-tests__/express.spec.ts -------------------------------------------------------------------------------- /examples/express-helmet/__integration-tests__/fixtures/file.txt: -------------------------------------------------------------------------------- 1 | SOME_CONTENT -------------------------------------------------------------------------------- /examples/express-helmet/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/express-helmet/package.json -------------------------------------------------------------------------------- /examples/express-helmet/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/express-helmet/src/app.ts -------------------------------------------------------------------------------- /examples/express-helmet/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/express-helmet/src/index.ts -------------------------------------------------------------------------------- /examples/express-helmet/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/express-helmet/tsconfig.json -------------------------------------------------------------------------------- /examples/express/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/express/CHANGELOG.md -------------------------------------------------------------------------------- /examples/express/__integration-tests__/express.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/express/__integration-tests__/express.spec.ts -------------------------------------------------------------------------------- /examples/express/__integration-tests__/fixtures/file.txt: -------------------------------------------------------------------------------- 1 | SOME_CONTENT -------------------------------------------------------------------------------- /examples/express/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/express/package.json -------------------------------------------------------------------------------- /examples/express/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/express/src/app.ts -------------------------------------------------------------------------------- /examples/express/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/express/src/index.ts -------------------------------------------------------------------------------- /examples/express/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/express/tsconfig.json -------------------------------------------------------------------------------- /examples/fastify-modules/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/fastify-modules/CHANGELOG.md -------------------------------------------------------------------------------- /examples/fastify-modules/__integration-test__/fastify-modules.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/fastify-modules/__integration-test__/fastify-modules.spec.ts -------------------------------------------------------------------------------- /examples/fastify-modules/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/fastify-modules/package.json -------------------------------------------------------------------------------- /examples/fastify-modules/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/fastify-modules/src/app.ts -------------------------------------------------------------------------------- /examples/fastify-modules/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/fastify-modules/src/index.ts -------------------------------------------------------------------------------- /examples/fastify-modules/src/modules/basic/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/fastify-modules/src/modules/basic/index.ts -------------------------------------------------------------------------------- /examples/fastify-modules/src/modules/basic/providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/fastify-modules/src/modules/basic/providers.ts -------------------------------------------------------------------------------- /examples/fastify-modules/src/modules/basic/resolvers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/fastify-modules/src/modules/basic/resolvers.ts -------------------------------------------------------------------------------- /examples/fastify-modules/src/modules/basic/typeDefs/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/fastify-modules/src/modules/basic/typeDefs/schema.graphql -------------------------------------------------------------------------------- /examples/fastify-modules/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/fastify-modules/tsconfig.json -------------------------------------------------------------------------------- /examples/fastify/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/fastify/CHANGELOG.md -------------------------------------------------------------------------------- /examples/fastify/__integration-tests__/fastify.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/fastify/__integration-tests__/fastify.spec.ts -------------------------------------------------------------------------------- /examples/fastify/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/fastify/package.json -------------------------------------------------------------------------------- /examples/fastify/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/fastify/src/app.ts -------------------------------------------------------------------------------- /examples/fastify/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/fastify/src/index.ts -------------------------------------------------------------------------------- /examples/fastify/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/fastify/tsconfig.json -------------------------------------------------------------------------------- /examples/file-upload-nextjs-pothos/.gitignore: -------------------------------------------------------------------------------- 1 | .next 2 | -------------------------------------------------------------------------------- /examples/file-upload-nextjs-pothos/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/file-upload-nextjs-pothos/CHANGELOG.md -------------------------------------------------------------------------------- /examples/file-upload-nextjs-pothos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/file-upload-nextjs-pothos/README.md -------------------------------------------------------------------------------- /examples/file-upload-nextjs-pothos/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/file-upload-nextjs-pothos/next-env.d.ts -------------------------------------------------------------------------------- /examples/file-upload-nextjs-pothos/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/file-upload-nextjs-pothos/package.json -------------------------------------------------------------------------------- /examples/file-upload-nextjs-pothos/pages/api/graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/file-upload-nextjs-pothos/pages/api/graphql.ts -------------------------------------------------------------------------------- /examples/file-upload-nextjs-pothos/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/file-upload-nextjs-pothos/schema.ts -------------------------------------------------------------------------------- /examples/file-upload-nextjs-pothos/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/file-upload-nextjs-pothos/tsconfig.json -------------------------------------------------------------------------------- /examples/file-upload-nexus/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/file-upload-nexus/CHANGELOG.md -------------------------------------------------------------------------------- /examples/file-upload-nexus/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/file-upload-nexus/index.ts -------------------------------------------------------------------------------- /examples/file-upload-nexus/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/file-upload-nexus/package.json -------------------------------------------------------------------------------- /examples/file-upload-nexus/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/file-upload-nexus/tsconfig.json -------------------------------------------------------------------------------- /examples/file-upload-nexus/yoga.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/file-upload-nexus/yoga.ts -------------------------------------------------------------------------------- /examples/file-upload/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/file-upload/CHANGELOG.md -------------------------------------------------------------------------------- /examples/file-upload/__integration-tests__/file-upload.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/file-upload/__integration-tests__/file-upload.spec.ts -------------------------------------------------------------------------------- /examples/file-upload/__integration-tests__/fixtures/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/file-upload/__integration-tests__/fixtures/image.jpg -------------------------------------------------------------------------------- /examples/file-upload/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/file-upload/index.ts -------------------------------------------------------------------------------- /examples/file-upload/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/file-upload/package.json -------------------------------------------------------------------------------- /examples/file-upload/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/file-upload/tsconfig.json -------------------------------------------------------------------------------- /examples/file-upload/yoga.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/file-upload/yoga.ts -------------------------------------------------------------------------------- /examples/firebase/.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/firebase/.firebaserc -------------------------------------------------------------------------------- /examples/firebase/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/firebase/.gitignore -------------------------------------------------------------------------------- /examples/firebase/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/firebase/firebase.json -------------------------------------------------------------------------------- /examples/firebase/functions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/firebase/functions/.gitignore -------------------------------------------------------------------------------- /examples/firebase/functions/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/firebase/functions/CHANGELOG.md -------------------------------------------------------------------------------- /examples/firebase/functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/firebase/functions/package.json -------------------------------------------------------------------------------- /examples/firebase/functions/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/firebase/functions/src/index.ts -------------------------------------------------------------------------------- /examples/firebase/functions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/firebase/functions/tsconfig.json -------------------------------------------------------------------------------- /examples/gcp-cloud-run/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/gcp-cloud-run/CHANGELOG.md -------------------------------------------------------------------------------- /examples/gcp-cloud-run/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/gcp-cloud-run/Dockerfile -------------------------------------------------------------------------------- /examples/gcp-cloud-run/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/gcp-cloud-run/package.json -------------------------------------------------------------------------------- /examples/gcp-cloud-run/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/gcp-cloud-run/src/index.js -------------------------------------------------------------------------------- /examples/gcp-functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/gcp-functions/package.json -------------------------------------------------------------------------------- /examples/gcp-functions/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/gcp-functions/src/index.ts -------------------------------------------------------------------------------- /examples/gcp-functions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/gcp-functions/tsconfig.json -------------------------------------------------------------------------------- /examples/generic-auth/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/generic-auth/CHANGELOG.md -------------------------------------------------------------------------------- /examples/generic-auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/generic-auth/README.md -------------------------------------------------------------------------------- /examples/generic-auth/__integration-tests__/generic-auth.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/generic-auth/__integration-tests__/generic-auth.spec.ts -------------------------------------------------------------------------------- /examples/generic-auth/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/generic-auth/package.json -------------------------------------------------------------------------------- /examples/generic-auth/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/generic-auth/src/app.ts -------------------------------------------------------------------------------- /examples/generic-auth/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/generic-auth/src/main.ts -------------------------------------------------------------------------------- /examples/generic-auth/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/generic-auth/tsconfig.json -------------------------------------------------------------------------------- /examples/graphql-armor/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/graphql-armor/CHANGELOG.md -------------------------------------------------------------------------------- /examples/graphql-armor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/graphql-armor/README.md -------------------------------------------------------------------------------- /examples/graphql-armor/__integration-tests__/graphql-armor.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/graphql-armor/__integration-tests__/graphql-armor.spec.ts -------------------------------------------------------------------------------- /examples/graphql-armor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/graphql-armor/package.json -------------------------------------------------------------------------------- /examples/graphql-armor/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/graphql-armor/src/main.ts -------------------------------------------------------------------------------- /examples/graphql-armor/src/yoga.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/graphql-armor/src/yoga.ts -------------------------------------------------------------------------------- /examples/graphql-armor/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/graphql-armor/tsconfig.json -------------------------------------------------------------------------------- /examples/graphql-sse/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/graphql-sse/package.json -------------------------------------------------------------------------------- /examples/graphql-sse/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/graphql-sse/src/app.ts -------------------------------------------------------------------------------- /examples/graphql-sse/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/graphql-sse/src/index.ts -------------------------------------------------------------------------------- /examples/graphql-sse/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/graphql-sse/tsconfig.json -------------------------------------------------------------------------------- /examples/graphql-ws/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/graphql-ws/CHANGELOG.md -------------------------------------------------------------------------------- /examples/graphql-ws/__integration-tests__/graphql-ws.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/graphql-ws/__integration-tests__/graphql-ws.spec.ts -------------------------------------------------------------------------------- /examples/graphql-ws/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/graphql-ws/package.json -------------------------------------------------------------------------------- /examples/graphql-ws/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/graphql-ws/src/app.ts -------------------------------------------------------------------------------- /examples/graphql-ws/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/graphql-ws/src/index.ts -------------------------------------------------------------------------------- /examples/graphql-ws/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/graphql-ws/tsconfig.json -------------------------------------------------------------------------------- /examples/hackernews/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/hackernews/.gitignore -------------------------------------------------------------------------------- /examples/hackernews/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/hackernews/CHANGELOG.md -------------------------------------------------------------------------------- /examples/hackernews/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/hackernews/README.md -------------------------------------------------------------------------------- /examples/hackernews/__integration-tests__/hackernews.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/hackernews/__integration-tests__/hackernews.spec.ts -------------------------------------------------------------------------------- /examples/hackernews/__integration-tests__/prisma__migrate.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/hackernews/__integration-tests__/prisma__migrate.d.ts -------------------------------------------------------------------------------- /examples/hackernews/codegen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/hackernews/codegen.ts -------------------------------------------------------------------------------- /examples/hackernews/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/hackernews/package.json -------------------------------------------------------------------------------- /examples/hackernews/prisma/migrations/20220223111842_init/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/hackernews/prisma/migrations/20220223111842_init/migration.sql -------------------------------------------------------------------------------- /examples/hackernews/prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/hackernews/prisma/schema.prisma -------------------------------------------------------------------------------- /examples/hackernews/src/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/hackernews/src/context.ts -------------------------------------------------------------------------------- /examples/hackernews/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/hackernews/src/main.ts -------------------------------------------------------------------------------- /examples/hackernews/src/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/hackernews/src/schema.ts -------------------------------------------------------------------------------- /examples/hackernews/src/schema/base/resolvers/Comment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/hackernews/src/schema/base/resolvers/Comment.ts -------------------------------------------------------------------------------- /examples/hackernews/src/schema/base/resolvers/Link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/hackernews/src/schema/base/resolvers/Link.ts -------------------------------------------------------------------------------- /examples/hackernews/src/schema/base/resolvers/Mutation/postLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/hackernews/src/schema/base/resolvers/Mutation/postLink.ts -------------------------------------------------------------------------------- /examples/hackernews/src/schema/base/resolvers/Query/comment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/hackernews/src/schema/base/resolvers/Query/comment.ts -------------------------------------------------------------------------------- /examples/hackernews/src/schema/base/resolvers/Query/feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/hackernews/src/schema/base/resolvers/Query/feed.ts -------------------------------------------------------------------------------- /examples/hackernews/src/schema/base/resolvers/Query/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/hackernews/src/schema/base/resolvers/Query/info.ts -------------------------------------------------------------------------------- /examples/hackernews/src/schema/base/resolvers/Query/link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/hackernews/src/schema/base/resolvers/Query/link.ts -------------------------------------------------------------------------------- /examples/hackernews/src/schema/base/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/hackernews/src/schema/base/schema.graphql -------------------------------------------------------------------------------- /examples/hackernews/src/schema/base/schema.mappers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/hackernews/src/schema/base/schema.mappers.ts -------------------------------------------------------------------------------- /examples/hackernews/src/script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/hackernews/src/script.ts -------------------------------------------------------------------------------- /examples/hackernews/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/hackernews/src/utils.ts -------------------------------------------------------------------------------- /examples/hackernews/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/hackernews/tsconfig.json -------------------------------------------------------------------------------- /examples/hapi/__integration-tests__/hapi.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/hapi/__integration-tests__/hapi.spec.ts -------------------------------------------------------------------------------- /examples/hapi/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/hapi/package.json -------------------------------------------------------------------------------- /examples/hapi/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/hapi/src/app.ts -------------------------------------------------------------------------------- /examples/hapi/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/hapi/src/index.ts -------------------------------------------------------------------------------- /examples/hapi/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/hapi/tsconfig.json -------------------------------------------------------------------------------- /examples/hello-world/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/hello-world/CHANGELOG.md -------------------------------------------------------------------------------- /examples/hello-world/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/hello-world/README.md -------------------------------------------------------------------------------- /examples/hello-world/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/hello-world/index.js -------------------------------------------------------------------------------- /examples/hello-world/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/hello-world/package.json -------------------------------------------------------------------------------- /examples/issue-template/.codesandbox/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM node:24-slim 2 | -------------------------------------------------------------------------------- /examples/issue-template/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/issue-template/CHANGELOG.md -------------------------------------------------------------------------------- /examples/issue-template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/issue-template/package.json -------------------------------------------------------------------------------- /examples/issue-template/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/issue-template/src/main.ts -------------------------------------------------------------------------------- /examples/issue-template/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/issue-template/tsconfig.json -------------------------------------------------------------------------------- /examples/koa/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/koa/CHANGELOG.md -------------------------------------------------------------------------------- /examples/koa/__integration-tests__/koa.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/koa/__integration-tests__/koa.spec.ts -------------------------------------------------------------------------------- /examples/koa/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/koa/package.json -------------------------------------------------------------------------------- /examples/koa/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/koa/src/app.ts -------------------------------------------------------------------------------- /examples/koa/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/koa/src/index.ts -------------------------------------------------------------------------------- /examples/koa/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/koa/tsconfig.json -------------------------------------------------------------------------------- /examples/live-query/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/live-query/CHANGELOG.md -------------------------------------------------------------------------------- /examples/live-query/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/live-query/package.json -------------------------------------------------------------------------------- /examples/live-query/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/live-query/src/main.ts -------------------------------------------------------------------------------- /examples/live-query/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/live-query/tsconfig.json -------------------------------------------------------------------------------- /examples/nestjs-apollo-federation-compatibility/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nestjs-apollo-federation-compatibility/docker-compose.yaml -------------------------------------------------------------------------------- /examples/nestjs-apollo-federation-compatibility/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nestjs-apollo-federation-compatibility/package.json -------------------------------------------------------------------------------- /examples/nestjs-apollo-federation-compatibility/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nestjs-apollo-federation-compatibility/schema.graphql -------------------------------------------------------------------------------- /examples/nestjs-apollo-federation-compatibility/scripts/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nestjs-apollo-federation-compatibility/scripts/bundle.js -------------------------------------------------------------------------------- /examples/nestjs-apollo-federation-compatibility/src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nestjs-apollo-federation-compatibility/src/app.module.ts -------------------------------------------------------------------------------- /examples/nestjs-apollo-federation-compatibility/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nestjs-apollo-federation-compatibility/src/main.ts -------------------------------------------------------------------------------- /examples/nestjs-apollo-federation-compatibility/src/users.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nestjs-apollo-federation-compatibility/src/users.resolver.ts -------------------------------------------------------------------------------- /examples/nestjs-apollo-federation-compatibility/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nestjs-apollo-federation-compatibility/tsconfig.json -------------------------------------------------------------------------------- /examples/netlify-edge/.gitignore: -------------------------------------------------------------------------------- 1 | netlify/edge-functions/* 2 | -------------------------------------------------------------------------------- /examples/netlify-edge/.netlify/edge-functions-import-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/netlify-edge/.netlify/edge-functions-import-map.json -------------------------------------------------------------------------------- /examples/netlify-edge/.netlify/state.json: -------------------------------------------------------------------------------- 1 | { 2 | "promptVSCodeSettings": true 3 | } 4 | -------------------------------------------------------------------------------- /examples/netlify-edge/__integration-tests__/netlify-edge.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/netlify-edge/__integration-tests__/netlify-edge.spec.ts -------------------------------------------------------------------------------- /examples/netlify-edge/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/netlify-edge/build.js -------------------------------------------------------------------------------- /examples/netlify-edge/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/netlify-edge/index.html -------------------------------------------------------------------------------- /examples/netlify-edge/netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/netlify-edge/netlify.toml -------------------------------------------------------------------------------- /examples/netlify-edge/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/netlify-edge/package.json -------------------------------------------------------------------------------- /examples/netlify-edge/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/netlify-edge/src/index.ts -------------------------------------------------------------------------------- /examples/nextjs-app/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-app/.eslintrc.json -------------------------------------------------------------------------------- /examples/nextjs-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-app/.gitignore -------------------------------------------------------------------------------- /examples/nextjs-app/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-app/CHANGELOG.md -------------------------------------------------------------------------------- /examples/nextjs-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-app/README.md -------------------------------------------------------------------------------- /examples/nextjs-app/__integration-tests__/nextjs-app.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-app/__integration-tests__/nextjs-app.spec.ts -------------------------------------------------------------------------------- /examples/nextjs-app/__integration-tests__/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-app/__integration-tests__/utils.ts -------------------------------------------------------------------------------- /examples/nextjs-app/app/api/graphql/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-app/app/api/graphql/route.ts -------------------------------------------------------------------------------- /examples/nextjs-app/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-app/app/favicon.ico -------------------------------------------------------------------------------- /examples/nextjs-app/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-app/app/globals.css -------------------------------------------------------------------------------- /examples/nextjs-app/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-app/app/layout.tsx -------------------------------------------------------------------------------- /examples/nextjs-app/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-app/app/page.tsx -------------------------------------------------------------------------------- /examples/nextjs-app/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-app/next-env.d.ts -------------------------------------------------------------------------------- /examples/nextjs-app/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-app/next.config.js -------------------------------------------------------------------------------- /examples/nextjs-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-app/package.json -------------------------------------------------------------------------------- /examples/nextjs-app/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-app/postcss.config.js -------------------------------------------------------------------------------- /examples/nextjs-app/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-app/public/next.svg -------------------------------------------------------------------------------- /examples/nextjs-app/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-app/public/vercel.svg -------------------------------------------------------------------------------- /examples/nextjs-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-app/tsconfig.json -------------------------------------------------------------------------------- /examples/nextjs-auth/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-auth/.env.sample -------------------------------------------------------------------------------- /examples/nextjs-auth/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-auth/.eslintrc.json -------------------------------------------------------------------------------- /examples/nextjs-auth/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-auth/.gitignore -------------------------------------------------------------------------------- /examples/nextjs-auth/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-auth/CHANGELOG.md -------------------------------------------------------------------------------- /examples/nextjs-auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-auth/README.md -------------------------------------------------------------------------------- /examples/nextjs-auth/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-auth/next-env.d.ts -------------------------------------------------------------------------------- /examples/nextjs-auth/next.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | reactStrictMode: true, 3 | }; 4 | -------------------------------------------------------------------------------- /examples/nextjs-auth/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-auth/package.json -------------------------------------------------------------------------------- /examples/nextjs-auth/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-auth/pages/_app.tsx -------------------------------------------------------------------------------- /examples/nextjs-auth/pages/api/auth/[...nextauth].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-auth/pages/api/auth/[...nextauth].ts -------------------------------------------------------------------------------- /examples/nextjs-auth/pages/api/graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-auth/pages/api/graphql.ts -------------------------------------------------------------------------------- /examples/nextjs-auth/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-auth/pages/index.tsx -------------------------------------------------------------------------------- /examples/nextjs-auth/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-auth/public/favicon.ico -------------------------------------------------------------------------------- /examples/nextjs-auth/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-auth/public/logo.svg -------------------------------------------------------------------------------- /examples/nextjs-auth/styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-auth/styles/Home.module.css -------------------------------------------------------------------------------- /examples/nextjs-auth/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-auth/styles/globals.css -------------------------------------------------------------------------------- /examples/nextjs-auth/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-auth/tsconfig.json -------------------------------------------------------------------------------- /examples/nextjs-legacy-pages/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-legacy-pages/.eslintrc.json -------------------------------------------------------------------------------- /examples/nextjs-legacy-pages/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-legacy-pages/.gitignore -------------------------------------------------------------------------------- /examples/nextjs-legacy-pages/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-legacy-pages/CHANGELOG.md -------------------------------------------------------------------------------- /examples/nextjs-legacy-pages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-legacy-pages/README.md -------------------------------------------------------------------------------- /examples/nextjs-legacy-pages/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-legacy-pages/next-env.d.ts -------------------------------------------------------------------------------- /examples/nextjs-legacy-pages/next.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | reactStrictMode: true, 3 | }; 4 | -------------------------------------------------------------------------------- /examples/nextjs-legacy-pages/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-legacy-pages/package.json -------------------------------------------------------------------------------- /examples/nextjs-legacy-pages/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-legacy-pages/pages/_app.tsx -------------------------------------------------------------------------------- /examples/nextjs-legacy-pages/pages/api/graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-legacy-pages/pages/api/graphql.ts -------------------------------------------------------------------------------- /examples/nextjs-legacy-pages/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-legacy-pages/pages/index.tsx -------------------------------------------------------------------------------- /examples/nextjs-legacy-pages/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-legacy-pages/public/favicon.ico -------------------------------------------------------------------------------- /examples/nextjs-legacy-pages/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-legacy-pages/public/logo.svg -------------------------------------------------------------------------------- /examples/nextjs-legacy-pages/scripts/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-legacy-pages/scripts/bundle.js -------------------------------------------------------------------------------- /examples/nextjs-legacy-pages/styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-legacy-pages/styles/Home.module.css -------------------------------------------------------------------------------- /examples/nextjs-legacy-pages/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-legacy-pages/styles/globals.css -------------------------------------------------------------------------------- /examples/nextjs-legacy-pages/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-legacy-pages/tsconfig.json -------------------------------------------------------------------------------- /examples/nextjs-ws/.gitignore: -------------------------------------------------------------------------------- 1 | .next 2 | out 3 | build 4 | -------------------------------------------------------------------------------- /examples/nextjs-ws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-ws/README.md -------------------------------------------------------------------------------- /examples/nextjs-ws/__integration-tests__/nextjs-ws.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-ws/__integration-tests__/nextjs-ws.spec.ts -------------------------------------------------------------------------------- /examples/nextjs-ws/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-ws/next-env.d.ts -------------------------------------------------------------------------------- /examples/nextjs-ws/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-ws/next.config.mjs -------------------------------------------------------------------------------- /examples/nextjs-ws/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-ws/package.json -------------------------------------------------------------------------------- /examples/nextjs-ws/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-ws/pages/_app.tsx -------------------------------------------------------------------------------- /examples/nextjs-ws/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-ws/pages/index.tsx -------------------------------------------------------------------------------- /examples/nextjs-ws/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-ws/public/favicon.ico -------------------------------------------------------------------------------- /examples/nextjs-ws/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-ws/public/logo.svg -------------------------------------------------------------------------------- /examples/nextjs-ws/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-ws/server.js -------------------------------------------------------------------------------- /examples/nextjs-ws/styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-ws/styles/Home.module.css -------------------------------------------------------------------------------- /examples/nextjs-ws/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-ws/styles/globals.css -------------------------------------------------------------------------------- /examples/nextjs-ws/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/nextjs-ws/tsconfig.json -------------------------------------------------------------------------------- /examples/node-esm/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/node-esm/CHANGELOG.md -------------------------------------------------------------------------------- /examples/node-esm/__integration-tests__/esm.spec.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/node-esm/__integration-tests__/esm.spec.mjs -------------------------------------------------------------------------------- /examples/node-esm/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/node-esm/index.mjs -------------------------------------------------------------------------------- /examples/node-esm/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/node-esm/jest.config.js -------------------------------------------------------------------------------- /examples/node-esm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/node-esm/package.json -------------------------------------------------------------------------------- /examples/node-esm/yoga.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/node-esm/yoga.mjs -------------------------------------------------------------------------------- /examples/node-ts/__integration-tests__/node-ts.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/node-ts/__integration-tests__/node-ts.spec.ts -------------------------------------------------------------------------------- /examples/node-ts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/node-ts/build.js -------------------------------------------------------------------------------- /examples/node-ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/node-ts/package.json -------------------------------------------------------------------------------- /examples/node-ts/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/node-ts/src/index.ts -------------------------------------------------------------------------------- /examples/node-ts/src/yoga.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/node-ts/src/yoga.ts -------------------------------------------------------------------------------- /examples/node-ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/node-ts/tsconfig.json -------------------------------------------------------------------------------- /examples/pothos/__integration-tests__/pothos.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/pothos/__integration-tests__/pothos.spec.ts -------------------------------------------------------------------------------- /examples/pothos/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/pothos/package.json -------------------------------------------------------------------------------- /examples/pothos/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/pothos/src/index.ts -------------------------------------------------------------------------------- /examples/pothos/src/yoga.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/pothos/src/yoga.ts -------------------------------------------------------------------------------- /examples/pothos/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/pothos/tsconfig.json -------------------------------------------------------------------------------- /examples/redis-pub-sub/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/redis-pub-sub/CHANGELOG.md -------------------------------------------------------------------------------- /examples/redis-pub-sub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/redis-pub-sub/README.md -------------------------------------------------------------------------------- /examples/redis-pub-sub/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/redis-pub-sub/package.json -------------------------------------------------------------------------------- /examples/redis-pub-sub/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/redis-pub-sub/src/main.ts -------------------------------------------------------------------------------- /examples/redis-pub-sub/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/redis-pub-sub/tsconfig.json -------------------------------------------------------------------------------- /examples/request-cancelation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/request-cancelation/package.json -------------------------------------------------------------------------------- /examples/request-cancelation/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/request-cancelation/src/main.ts -------------------------------------------------------------------------------- /examples/request-cancelation/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/request-cancelation/tsconfig.json -------------------------------------------------------------------------------- /examples/response-cache/__integration-tests__/response-cache.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/response-cache/__integration-tests__/response-cache.spec.ts -------------------------------------------------------------------------------- /examples/response-cache/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/response-cache/package.json -------------------------------------------------------------------------------- /examples/response-cache/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/response-cache/src/main.ts -------------------------------------------------------------------------------- /examples/response-cache/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/response-cache/tsconfig.json -------------------------------------------------------------------------------- /examples/service-worker/.gitignore: -------------------------------------------------------------------------------- 1 | worker/ 2 | -------------------------------------------------------------------------------- /examples/service-worker/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/service-worker/CHANGELOG.md -------------------------------------------------------------------------------- /examples/service-worker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/service-worker/README.md -------------------------------------------------------------------------------- /examples/service-worker/__integration-tests__/integration.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/service-worker/__integration-tests__/integration.spec.ts -------------------------------------------------------------------------------- /examples/service-worker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/service-worker/package.json -------------------------------------------------------------------------------- /examples/service-worker/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/service-worker/src/index.ts -------------------------------------------------------------------------------- /examples/service-worker/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/service-worker/tsconfig.json -------------------------------------------------------------------------------- /examples/service-worker/wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/service-worker/wrangler.toml -------------------------------------------------------------------------------- /examples/sofa/__integration-tests__/sofa.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/sofa/__integration-tests__/sofa.spec.ts -------------------------------------------------------------------------------- /examples/sofa/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/sofa/package.json -------------------------------------------------------------------------------- /examples/sofa/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/sofa/src/index.ts -------------------------------------------------------------------------------- /examples/sofa/src/yoga.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/sofa/src/yoga.ts -------------------------------------------------------------------------------- /examples/sofa/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/sofa/tsconfig.json -------------------------------------------------------------------------------- /examples/subscriptions/.gitignore: -------------------------------------------------------------------------------- 1 | src/generated/ 2 | -------------------------------------------------------------------------------- /examples/subscriptions/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/subscriptions/CHANGELOG.md -------------------------------------------------------------------------------- /examples/subscriptions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/subscriptions/README.md -------------------------------------------------------------------------------- /examples/subscriptions/codegen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/subscriptions/codegen.yml -------------------------------------------------------------------------------- /examples/subscriptions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/subscriptions/package.json -------------------------------------------------------------------------------- /examples/subscriptions/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/subscriptions/src/index.ts -------------------------------------------------------------------------------- /examples/subscriptions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/subscriptions/tsconfig.json -------------------------------------------------------------------------------- /examples/sveltekit/.eslintrc.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/sveltekit/.eslintrc.mjs -------------------------------------------------------------------------------- /examples/sveltekit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/sveltekit/.gitignore -------------------------------------------------------------------------------- /examples/sveltekit/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /examples/sveltekit/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/sveltekit/.prettierrc -------------------------------------------------------------------------------- /examples/sveltekit/.svelte-kit/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/sveltekit/.svelte-kit/tsconfig.json -------------------------------------------------------------------------------- /examples/sveltekit/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/sveltekit/CHANGELOG.md -------------------------------------------------------------------------------- /examples/sveltekit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/sveltekit/README.md -------------------------------------------------------------------------------- /examples/sveltekit/__integration-tests__/sveltekit.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/sveltekit/__integration-tests__/sveltekit.spec.ts -------------------------------------------------------------------------------- /examples/sveltekit/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/sveltekit/package.json -------------------------------------------------------------------------------- /examples/sveltekit/ponyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/sveltekit/ponyfill.js -------------------------------------------------------------------------------- /examples/sveltekit/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/sveltekit/src/app.html -------------------------------------------------------------------------------- /examples/sveltekit/src/global.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/sveltekit/src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/sveltekit/src/routes/+page.svelte -------------------------------------------------------------------------------- /examples/sveltekit/src/routes/api/graphql/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/sveltekit/src/routes/api/graphql/+server.ts -------------------------------------------------------------------------------- /examples/sveltekit/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/sveltekit/static/favicon.png -------------------------------------------------------------------------------- /examples/sveltekit/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/sveltekit/svelte.config.js -------------------------------------------------------------------------------- /examples/sveltekit/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/sveltekit/tsconfig.json -------------------------------------------------------------------------------- /examples/sveltekit/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/sveltekit/vite.config.ts -------------------------------------------------------------------------------- /examples/uwebsockets/__integration-tests__/uwebsockets.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/uwebsockets/__integration-tests__/uwebsockets.test.ts -------------------------------------------------------------------------------- /examples/uwebsockets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/uwebsockets/package.json -------------------------------------------------------------------------------- /examples/uwebsockets/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/uwebsockets/src/app.ts -------------------------------------------------------------------------------- /examples/uwebsockets/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/uwebsockets/src/index.ts -------------------------------------------------------------------------------- /examples/uwebsockets/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/examples/uwebsockets/tsconfig.json -------------------------------------------------------------------------------- /import-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/import-map.json -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/package.json -------------------------------------------------------------------------------- /packages/client/apollo-link/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/client/apollo-link/CHANGELOG.md -------------------------------------------------------------------------------- /packages/client/apollo-link/__integration-tests__/apollo-link.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/client/apollo-link/__integration-tests__/apollo-link.spec.ts -------------------------------------------------------------------------------- /packages/client/apollo-link/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/client/apollo-link/package.json -------------------------------------------------------------------------------- /packages/client/apollo-link/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/client/apollo-link/src/index.ts -------------------------------------------------------------------------------- /packages/client/urql-exchange/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/client/urql-exchange/CHANGELOG.md -------------------------------------------------------------------------------- /packages/client/urql-exchange/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/client/urql-exchange/package.json -------------------------------------------------------------------------------- /packages/client/urql-exchange/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/client/urql-exchange/src/index.ts -------------------------------------------------------------------------------- /packages/event-target/redis-event-target/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/event-target/redis-event-target/CHANGELOG.md -------------------------------------------------------------------------------- /packages/event-target/redis-event-target/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/event-target/redis-event-target/README.md -------------------------------------------------------------------------------- /packages/event-target/redis-event-target/__tests__/serializer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/event-target/redis-event-target/__tests__/serializer.spec.ts -------------------------------------------------------------------------------- /packages/event-target/redis-event-target/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/event-target/redis-event-target/package.json -------------------------------------------------------------------------------- /packages/event-target/redis-event-target/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/event-target/redis-event-target/src/index.ts -------------------------------------------------------------------------------- /packages/event-target/typed-event-target/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/event-target/typed-event-target/CHANGELOG.md -------------------------------------------------------------------------------- /packages/event-target/typed-event-target/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/event-target/typed-event-target/README.md -------------------------------------------------------------------------------- /packages/event-target/typed-event-target/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/event-target/typed-event-target/package.json -------------------------------------------------------------------------------- /packages/event-target/typed-event-target/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/event-target/typed-event-target/src/index.ts -------------------------------------------------------------------------------- /packages/graphiql/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphiql/CHANGELOG.md -------------------------------------------------------------------------------- /packages/graphiql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphiql/README.md -------------------------------------------------------------------------------- /packages/graphiql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphiql/index.html -------------------------------------------------------------------------------- /packages/graphiql/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphiql/package.json -------------------------------------------------------------------------------- /packages/graphiql/src/YogaGraphiQL.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphiql/src/YogaGraphiQL.tsx -------------------------------------------------------------------------------- /packages/graphiql/src/YogaLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphiql/src/YogaLogo.tsx -------------------------------------------------------------------------------- /packages/graphiql/src/bundle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphiql/src/bundle.tsx -------------------------------------------------------------------------------- /packages/graphiql/src/declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphiql/src/declarations.d.ts -------------------------------------------------------------------------------- /packages/graphiql/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphiql/src/styles.css -------------------------------------------------------------------------------- /packages/graphiql/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphiql/vite.config.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/CHANGELOG.md -------------------------------------------------------------------------------- /packages/graphql-yoga/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/README.md -------------------------------------------------------------------------------- /packages/graphql-yoga/__integration-tests__/browser.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/__integration-tests__/browser.spec.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/__integration-tests__/file-uploads.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/__integration-tests__/file-uploads.spec.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/__integration-tests__/fixtures/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/__integration-tests__/fixtures/image.png -------------------------------------------------------------------------------- /packages/graphql-yoga/__integration-tests__/graphql-scalars.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/__integration-tests__/graphql-scalars.spec.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/__integration-tests__/http2.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/__integration-tests__/http2.spec.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/__integration-tests__/node-http.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/__integration-tests__/node-http.spec.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/__integration-tests__/subscription.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/__integration-tests__/subscription.spec.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/__tests__/404.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/__tests__/404.spec.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/__tests__/500.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/__tests__/500.spec.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/__tests__/accept-header.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/__tests__/accept-header.spec.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/__tests__/batching.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/__tests__/batching.spec.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/__tests__/context.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/__tests__/context.spec.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/__tests__/custom-serializer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/__tests__/custom-serializer.spec.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/__tests__/error-masking.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/__tests__/error-masking.spec.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/__tests__/getEnveloped.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/__tests__/getEnveloped.spec.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/__tests__/getparser-json.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/__tests__/getparser-json.spec.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/__tests__/graphql-http.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/__tests__/graphql-http.spec.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/__tests__/graphql-over-http.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/__tests__/graphql-over-http.spec.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/__tests__/graphql-sse.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/__tests__/graphql-sse.spec.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/__tests__/health-check.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/__tests__/health-check.spec.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/__tests__/http-extensions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/__tests__/http-extensions.spec.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/__tests__/instruments.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/__tests__/instruments.spec.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/__tests__/introspection.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/__tests__/introspection.spec.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/__tests__/logging.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/__tests__/logging.spec.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/__tests__/plugin-hooks.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/__tests__/plugin-hooks.spec.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/__tests__/readiness-check.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/__tests__/readiness-check.spec.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/__tests__/recipes.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/__tests__/recipes.spec.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/__tests__/request-cancellation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/__tests__/request-cancellation.spec.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/__tests__/requests.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/__tests__/requests.spec.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/__tests__/schema.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/__tests__/schema.spec.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/__tests__/subscriptions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/__tests__/subscriptions.spec.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/__tests__/utilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/__tests__/utilities.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/__tests__/validation-cache.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/__tests__/validation-cache.spec.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/package.json -------------------------------------------------------------------------------- /packages/graphql-yoga/scripts/generate-graphiql-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/scripts/generate-graphiql-html.js -------------------------------------------------------------------------------- /packages/graphql-yoga/scripts/inject-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/scripts/inject-version.js -------------------------------------------------------------------------------- /packages/graphql-yoga/src/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/src/error.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/src/graphiql.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/src/graphiql.html -------------------------------------------------------------------------------- /packages/graphql-yoga/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/src/index.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/src/landing-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/src/landing-page.html -------------------------------------------------------------------------------- /packages/graphql-yoga/src/plugins/allowed-headers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/src/plugins/allowed-headers.spec.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/src/plugins/allowed-headers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/src/plugins/allowed-headers.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/src/plugins/plugins.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/src/plugins/plugins.test.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/src/plugins/request-parser/get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/src/plugins/request-parser/get.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/src/plugins/request-parser/post-json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/src/plugins/request-parser/post-json.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/src/plugins/request-parser/post-multipart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/src/plugins/request-parser/post-multipart.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/src/plugins/request-parser/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/src/plugins/request-parser/utils.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/src/plugins/result-processor/accept.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/src/plugins/result-processor/accept.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/src/plugins/result-processor/multipart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/src/plugins/result-processor/multipart.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/src/plugins/result-processor/regular.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/src/plugins/result-processor/regular.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/src/plugins/result-processor/sse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/src/plugins/result-processor/sse.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/src/plugins/result-processor/stringify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/src/plugins/result-processor/stringify.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/src/plugins/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/src/plugins/types.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/src/plugins/use-cors.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/src/plugins/use-cors.spec.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/src/plugins/use-error-coordinate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/src/plugins/use-error-coordinate.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/src/plugins/use-execution-cancellation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/src/plugins/use-execution-cancellation.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/src/plugins/use-graphiql.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/src/plugins/use-graphiql.spec.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/src/plugins/use-graphiql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/src/plugins/use-graphiql.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/src/plugins/use-health-check.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/src/plugins/use-health-check.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/src/plugins/use-parser-and-validation-cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/src/plugins/use-parser-and-validation-cache.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/src/plugins/use-readiness-check.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/src/plugins/use-readiness-check.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/src/plugins/use-request-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/src/plugins/use-request-parser.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/src/plugins/use-result-processor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/src/plugins/use-result-processor.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/src/plugins/use-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/src/plugins/use-schema.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/src/plugins/use-unhandled-route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/src/plugins/use-unhandled-route.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/src/process-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/src/process-request.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/src/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/src/schema.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/src/server.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/src/subscription.ts: -------------------------------------------------------------------------------- 1 | export * from '@graphql-yoga/subscription'; 2 | -------------------------------------------------------------------------------- /packages/graphql-yoga/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/src/types.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/src/utils/create-lru-cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/src/utils/create-lru-cache.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/src/utils/mask-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/src/utils/mask-error.ts -------------------------------------------------------------------------------- /packages/graphql-yoga/type-api-check.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/graphql-yoga/type-api-check.ts -------------------------------------------------------------------------------- /packages/logger/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/logger/CHANGELOG.md -------------------------------------------------------------------------------- /packages/logger/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/logger/package.json -------------------------------------------------------------------------------- /packages/logger/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/logger/src/index.ts -------------------------------------------------------------------------------- /packages/nestjs-federation/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/nestjs-federation/CHANGELOG.md -------------------------------------------------------------------------------- /packages/nestjs-federation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/nestjs-federation/README.md -------------------------------------------------------------------------------- /packages/nestjs-federation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/nestjs-federation/package.json -------------------------------------------------------------------------------- /packages/nestjs-federation/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/nestjs-federation/src/index.ts -------------------------------------------------------------------------------- /packages/nestjs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/nestjs/CHANGELOG.md -------------------------------------------------------------------------------- /packages/nestjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/nestjs/README.md -------------------------------------------------------------------------------- /packages/nestjs/__tests__/fixtures/graphql/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/nestjs/__tests__/fixtures/graphql/app.module.ts -------------------------------------------------------------------------------- /packages/nestjs/__tests__/fixtures/graphql/cats/cats.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/nestjs/__tests__/fixtures/graphql/cats/cats.guard.ts -------------------------------------------------------------------------------- /packages/nestjs/__tests__/fixtures/graphql/cats/cats.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/nestjs/__tests__/fixtures/graphql/cats/cats.module.ts -------------------------------------------------------------------------------- /packages/nestjs/__tests__/fixtures/graphql/cats/cats.resolvers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/nestjs/__tests__/fixtures/graphql/cats/cats.resolvers.ts -------------------------------------------------------------------------------- /packages/nestjs/__tests__/fixtures/graphql/cats/cats.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/nestjs/__tests__/fixtures/graphql/cats/cats.service.ts -------------------------------------------------------------------------------- /packages/nestjs/__tests__/fixtures/graphql/cats/cats.types.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/nestjs/__tests__/fixtures/graphql/cats/cats.types.graphql -------------------------------------------------------------------------------- /packages/nestjs/__tests__/graphql-http.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/nestjs/__tests__/graphql-http.spec.ts -------------------------------------------------------------------------------- /packages/nestjs/__tests__/graphql-ws.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/nestjs/__tests__/graphql-ws.spec.ts -------------------------------------------------------------------------------- /packages/nestjs/__tests__/graphql.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/nestjs/__tests__/graphql.spec.ts -------------------------------------------------------------------------------- /packages/nestjs/__tests__/subscriptions-transport-ws.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/nestjs/__tests__/subscriptions-transport-ws.spec.ts -------------------------------------------------------------------------------- /packages/nestjs/__tests__/subscriptions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/nestjs/__tests__/subscriptions.spec.ts -------------------------------------------------------------------------------- /packages/nestjs/__tests__/utils/pubsub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/nestjs/__tests__/utils/pubsub.ts -------------------------------------------------------------------------------- /packages/nestjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/nestjs/package.json -------------------------------------------------------------------------------- /packages/nestjs/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/nestjs/src/index.ts -------------------------------------------------------------------------------- /packages/plugins/apollo-inline-trace/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/apollo-inline-trace/CHANGELOG.md -------------------------------------------------------------------------------- /packages/plugins/apollo-inline-trace/__tests__/fixtures/subgraph1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/apollo-inline-trace/__tests__/fixtures/subgraph1.ts -------------------------------------------------------------------------------- /packages/plugins/apollo-inline-trace/__tests__/fixtures/subgraph2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/apollo-inline-trace/__tests__/fixtures/subgraph2.ts -------------------------------------------------------------------------------- /packages/plugins/apollo-inline-trace/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/apollo-inline-trace/package.json -------------------------------------------------------------------------------- /packages/plugins/apollo-inline-trace/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/apollo-inline-trace/src/index.ts -------------------------------------------------------------------------------- /packages/plugins/apollo-managed-federation/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/apollo-managed-federation/CHANGELOG.md -------------------------------------------------------------------------------- /packages/plugins/apollo-managed-federation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/apollo-managed-federation/README.md -------------------------------------------------------------------------------- /packages/plugins/apollo-managed-federation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/apollo-managed-federation/package.json -------------------------------------------------------------------------------- /packages/plugins/apollo-managed-federation/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/apollo-managed-federation/src/index.ts -------------------------------------------------------------------------------- /packages/plugins/apollo-usage-report/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/apollo-usage-report/CHANGELOG.md -------------------------------------------------------------------------------- /packages/plugins/apollo-usage-report/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/apollo-usage-report/package.json -------------------------------------------------------------------------------- /packages/plugins/apollo-usage-report/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/apollo-usage-report/src/index.ts -------------------------------------------------------------------------------- /packages/plugins/apollo-usage-report/src/reporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/apollo-usage-report/src/reporter.ts -------------------------------------------------------------------------------- /packages/plugins/apollo-usage-report/src/stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/apollo-usage-report/src/stats.ts -------------------------------------------------------------------------------- /packages/plugins/apq/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/apq/CHANGELOG.md -------------------------------------------------------------------------------- /packages/plugins/apq/__integration-tests__/apollo-client.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/apq/__integration-tests__/apollo-client.test.ts -------------------------------------------------------------------------------- /packages/plugins/apq/__tests__/apq.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/apq/__tests__/apq.spec.ts -------------------------------------------------------------------------------- /packages/plugins/apq/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/apq/package.json -------------------------------------------------------------------------------- /packages/plugins/apq/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/apq/src/index.ts -------------------------------------------------------------------------------- /packages/plugins/csrf-prevention/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/csrf-prevention/CHANGELOG.md -------------------------------------------------------------------------------- /packages/plugins/csrf-prevention/__tests__/csrf-prevention.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/csrf-prevention/__tests__/csrf-prevention.spec.ts -------------------------------------------------------------------------------- /packages/plugins/csrf-prevention/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/csrf-prevention/package.json -------------------------------------------------------------------------------- /packages/plugins/csrf-prevention/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/csrf-prevention/src/index.ts -------------------------------------------------------------------------------- /packages/plugins/defer-stream/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/defer-stream/CHANGELOG.md -------------------------------------------------------------------------------- /packages/plugins/defer-stream/__tests__/defer-stream.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/defer-stream/__tests__/defer-stream.spec.ts -------------------------------------------------------------------------------- /packages/plugins/defer-stream/__tests__/push-pull-async-iterable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/defer-stream/__tests__/push-pull-async-iterable.ts -------------------------------------------------------------------------------- /packages/plugins/defer-stream/__tests__/validations/harness.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/defer-stream/__tests__/validations/harness.ts -------------------------------------------------------------------------------- /packages/plugins/defer-stream/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/defer-stream/package.json -------------------------------------------------------------------------------- /packages/plugins/defer-stream/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/defer-stream/src/index.ts -------------------------------------------------------------------------------- /packages/plugins/disable-introspection/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/disable-introspection/CHANGELOG.md -------------------------------------------------------------------------------- /packages/plugins/disable-introspection/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/disable-introspection/package.json -------------------------------------------------------------------------------- /packages/plugins/disable-introspection/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/disable-introspection/src/index.ts -------------------------------------------------------------------------------- /packages/plugins/graphql-sse/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/graphql-sse/CHANGELOG.md -------------------------------------------------------------------------------- /packages/plugins/graphql-sse/__tests__/graphql-sse.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/graphql-sse/__tests__/graphql-sse.spec.ts -------------------------------------------------------------------------------- /packages/plugins/graphql-sse/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/graphql-sse/package.json -------------------------------------------------------------------------------- /packages/plugins/graphql-sse/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/graphql-sse/src/index.ts -------------------------------------------------------------------------------- /packages/plugins/jwt/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/jwt/CHANGELOG.md -------------------------------------------------------------------------------- /packages/plugins/jwt/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/jwt/package.json -------------------------------------------------------------------------------- /packages/plugins/jwt/src/__tests__/jwt.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/jwt/src/__tests__/jwt.spec.ts -------------------------------------------------------------------------------- /packages/plugins/jwt/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/jwt/src/config.ts -------------------------------------------------------------------------------- /packages/plugins/jwt/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/jwt/src/index.ts -------------------------------------------------------------------------------- /packages/plugins/jwt/src/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/jwt/src/plugin.ts -------------------------------------------------------------------------------- /packages/plugins/jwt/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/jwt/src/utils.ts -------------------------------------------------------------------------------- /packages/plugins/persisted-operations/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/persisted-operations/CHANGELOG.md -------------------------------------------------------------------------------- /packages/plugins/persisted-operations/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/persisted-operations/package.json -------------------------------------------------------------------------------- /packages/plugins/persisted-operations/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/persisted-operations/src/index.ts -------------------------------------------------------------------------------- /packages/plugins/prometheus/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/prometheus/CHANGELOG.md -------------------------------------------------------------------------------- /packages/plugins/prometheus/__integration-tests__/graphql-ws.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/prometheus/__integration-tests__/graphql-ws.test.ts -------------------------------------------------------------------------------- /packages/plugins/prometheus/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/prometheus/package.json -------------------------------------------------------------------------------- /packages/plugins/prometheus/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/prometheus/src/index.ts -------------------------------------------------------------------------------- /packages/plugins/prometheus/tests/prometheus.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/prometheus/tests/prometheus.spec.ts -------------------------------------------------------------------------------- /packages/plugins/response-cache/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/response-cache/CHANGELOG.md -------------------------------------------------------------------------------- /packages/plugins/response-cache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/response-cache/README.md -------------------------------------------------------------------------------- /packages/plugins/response-cache/__tests__/etag.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/response-cache/__tests__/etag.spec.ts -------------------------------------------------------------------------------- /packages/plugins/response-cache/__tests__/response-cache.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/response-cache/__tests__/response-cache.spec.ts -------------------------------------------------------------------------------- /packages/plugins/response-cache/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/response-cache/package.json -------------------------------------------------------------------------------- /packages/plugins/response-cache/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/response-cache/src/index.ts -------------------------------------------------------------------------------- /packages/plugins/sofa/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/sofa/CHANGELOG.md -------------------------------------------------------------------------------- /packages/plugins/sofa/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/sofa/package.json -------------------------------------------------------------------------------- /packages/plugins/sofa/src/__tests__/sofa.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/sofa/src/__tests__/sofa.spec.ts -------------------------------------------------------------------------------- /packages/plugins/sofa/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/sofa/src/index.ts -------------------------------------------------------------------------------- /packages/plugins/sofa/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/sofa/src/types.ts -------------------------------------------------------------------------------- /packages/plugins/sofa/tests/sofa.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/plugins/sofa/tests/sofa.test.ts -------------------------------------------------------------------------------- /packages/render-apollo-sandbox/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/render-apollo-sandbox/CHANGELOG.md -------------------------------------------------------------------------------- /packages/render-apollo-sandbox/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/render-apollo-sandbox/package.json -------------------------------------------------------------------------------- /packages/render-apollo-sandbox/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/render-apollo-sandbox/src/index.ts -------------------------------------------------------------------------------- /packages/render-graphiql/.gitignore: -------------------------------------------------------------------------------- 1 | src/graphiql.ts 2 | -------------------------------------------------------------------------------- /packages/render-graphiql/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/render-graphiql/CHANGELOG.md -------------------------------------------------------------------------------- /packages/render-graphiql/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/render-graphiql/package.json -------------------------------------------------------------------------------- /packages/render-graphiql/scripts/yoga-bundle-string.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/render-graphiql/scripts/yoga-bundle-string.mjs -------------------------------------------------------------------------------- /packages/render-graphiql/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/render-graphiql/src/index.ts -------------------------------------------------------------------------------- /packages/subscription/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/subscription/CHANGELOG.md -------------------------------------------------------------------------------- /packages/subscription/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/subscription/package.json -------------------------------------------------------------------------------- /packages/subscription/src/create-pub-sub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/subscription/src/create-pub-sub.ts -------------------------------------------------------------------------------- /packages/subscription/src/createPubSub.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/subscription/src/createPubSub.spec.ts -------------------------------------------------------------------------------- /packages/subscription/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/subscription/src/index.ts -------------------------------------------------------------------------------- /packages/subscription/src/operator/filter.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/subscription/src/operator/filter.spec.ts -------------------------------------------------------------------------------- /packages/subscription/src/operator/filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/subscription/src/operator/filter.ts -------------------------------------------------------------------------------- /packages/subscription/src/operator/map.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/subscription/src/operator/map.spec.ts -------------------------------------------------------------------------------- /packages/subscription/src/operator/map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/subscription/src/operator/map.ts -------------------------------------------------------------------------------- /packages/subscription/src/utils/pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/packages/subscription/src/utils/pipe.ts -------------------------------------------------------------------------------- /patches/@changesets__assemble-release-plan@5.2.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/patches/@changesets__assemble-release-plan@5.2.3.patch -------------------------------------------------------------------------------- /patches/formdata-node@4.4.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/patches/formdata-node@4.4.1.patch -------------------------------------------------------------------------------- /patches/jest-environment-node.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/patches/jest-environment-node.patch -------------------------------------------------------------------------------- /patches/jest-leak-detector.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/patches/jest-leak-detector.patch -------------------------------------------------------------------------------- /patches/package-up.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/patches/package-up.patch -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /prettier.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/prettier.config.mjs -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/renovate.json -------------------------------------------------------------------------------- /scripts/override-graphql-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/scripts/override-graphql-version.js -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/vercel.json -------------------------------------------------------------------------------- /website/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/.gitignore -------------------------------------------------------------------------------- /website/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/next-env.d.ts -------------------------------------------------------------------------------- /website/next-sitemap.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/next-sitemap.config.js -------------------------------------------------------------------------------- /website/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/next.config.ts -------------------------------------------------------------------------------- /website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/package.json -------------------------------------------------------------------------------- /website/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/playwright.config.ts -------------------------------------------------------------------------------- /website/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/postcss.config.js -------------------------------------------------------------------------------- /website/public/assets/ecosystem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/public/assets/ecosystem.svg -------------------------------------------------------------------------------- /website/public/assets/http.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/public/assets/http.svg -------------------------------------------------------------------------------- /website/public/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/public/assets/logo.svg -------------------------------------------------------------------------------- /website/public/assets/subscriptions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/public/assets/subscriptions.svg -------------------------------------------------------------------------------- /website/public/assets/yogaHome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/public/assets/yogaHome.svg -------------------------------------------------------------------------------- /website/public/banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/public/banner.svg -------------------------------------------------------------------------------- /website/public/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/public/cover.png -------------------------------------------------------------------------------- /website/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/public/logo.png -------------------------------------------------------------------------------- /website/remote-files/v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/remote-files/v2.json -------------------------------------------------------------------------------- /website/remote-files/v3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/remote-files/v3.json -------------------------------------------------------------------------------- /website/remote-files/v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/remote-files/v4.json -------------------------------------------------------------------------------- /website/route-lockfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/route-lockfile.txt -------------------------------------------------------------------------------- /website/scripts/fetch-remote-filepaths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/scripts/fetch-remote-filepaths.ts -------------------------------------------------------------------------------- /website/scripts/sitemap-ci.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/scripts/sitemap-ci.ts -------------------------------------------------------------------------------- /website/src/app/(landing-pages)/faq.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/app/(landing-pages)/faq.mdx -------------------------------------------------------------------------------- /website/src/app/(landing-pages)/icons/apollo-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/app/(landing-pages)/icons/apollo-icon.svg -------------------------------------------------------------------------------- /website/src/app/(landing-pages)/icons/arrow-up-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/app/(landing-pages)/icons/arrow-up-icon.svg -------------------------------------------------------------------------------- /website/src/app/(landing-pages)/icons/check-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/app/(landing-pages)/icons/check-icon.svg -------------------------------------------------------------------------------- /website/src/app/(landing-pages)/icons/error-warning-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/app/(landing-pages)/icons/error-warning-icon.svg -------------------------------------------------------------------------------- /website/src/app/(landing-pages)/icons/graphql-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/app/(landing-pages)/icons/graphql-icon.svg -------------------------------------------------------------------------------- /website/src/app/(landing-pages)/icons/pulse-line-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/app/(landing-pages)/icons/pulse-line-icon.svg -------------------------------------------------------------------------------- /website/src/app/(landing-pages)/icons/puzzle-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/app/(landing-pages)/icons/puzzle-icon.svg -------------------------------------------------------------------------------- /website/src/app/(landing-pages)/icons/safe-line-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/app/(landing-pages)/icons/safe-line-icon.svg -------------------------------------------------------------------------------- /website/src/app/(landing-pages)/icons/server-line-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/app/(landing-pages)/icons/server-line-icon.svg -------------------------------------------------------------------------------- /website/src/app/(landing-pages)/icons/timer-line-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/app/(landing-pages)/icons/timer-line-icon.svg -------------------------------------------------------------------------------- /website/src/app/(landing-pages)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/app/(landing-pages)/layout.tsx -------------------------------------------------------------------------------- /website/src/app/(landing-pages)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/app/(landing-pages)/page.tsx -------------------------------------------------------------------------------- /website/src/app/(landing-pages)/practice-yoga-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/app/(landing-pages)/practice-yoga-section.tsx -------------------------------------------------------------------------------- /website/src/app/(landing-pages)/reach-zen-quicker-with-yoga.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/app/(landing-pages)/reach-zen-quicker-with-yoga.tsx -------------------------------------------------------------------------------- /website/src/app/(landing-pages)/runs-anywhere.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/app/(landing-pages)/runs-anywhere.tsx -------------------------------------------------------------------------------- /website/src/app/(landing-pages)/truly-extendable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/app/(landing-pages)/truly-extendable.tsx -------------------------------------------------------------------------------- /website/src/app/[...mdxPath]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/app/[...mdxPath]/page.tsx -------------------------------------------------------------------------------- /website/src/app/_meta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/app/_meta.tsx -------------------------------------------------------------------------------- /website/src/app/changelogs/[...slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/app/changelogs/[...slug]/page.tsx -------------------------------------------------------------------------------- /website/src/app/codegen-callout.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/app/codegen-callout.mdx -------------------------------------------------------------------------------- /website/src/app/comparison-table.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/app/comparison-table.mdx -------------------------------------------------------------------------------- /website/src/app/env.d.ts: -------------------------------------------------------------------------------- 1 | declare module '*.mdx'; 2 | -------------------------------------------------------------------------------- /website/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/app/favicon.ico -------------------------------------------------------------------------------- /website/src/app/giscus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/app/giscus.tsx -------------------------------------------------------------------------------- /website/src/app/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/app/global.css -------------------------------------------------------------------------------- /website/src/app/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/app/icon.svg -------------------------------------------------------------------------------- /website/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/app/layout.tsx -------------------------------------------------------------------------------- /website/src/app/legacy-docs-banner.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/app/legacy-docs-banner.mdx -------------------------------------------------------------------------------- /website/src/app/metadata.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/app/metadata.tsx -------------------------------------------------------------------------------- /website/src/app/v2/[[...slug]]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/app/v2/[[...slug]]/page.tsx -------------------------------------------------------------------------------- /website/src/app/v3/[[...slug]]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/app/v3/[[...slug]]/page.tsx -------------------------------------------------------------------------------- /website/src/app/v4/[[...slug]]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/app/v4/[[...slug]]/page.tsx -------------------------------------------------------------------------------- /website/src/app/version-dropdown.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/app/version-dropdown.client.tsx -------------------------------------------------------------------------------- /website/src/app/versioned-search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/app/versioned-search.tsx -------------------------------------------------------------------------------- /website/src/content/docs/_meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/_meta.ts -------------------------------------------------------------------------------- /website/src/content/docs/comparison.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/comparison.mdx -------------------------------------------------------------------------------- /website/src/content/docs/features/_meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/features/_meta.ts -------------------------------------------------------------------------------- /website/src/content/docs/features/apollo-federation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/features/apollo-federation.mdx -------------------------------------------------------------------------------- /website/src/content/docs/features/automatic-persisted-queries.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/features/automatic-persisted-queries.mdx -------------------------------------------------------------------------------- /website/src/content/docs/features/context.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/features/context.mdx -------------------------------------------------------------------------------- /website/src/content/docs/features/cookies.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/features/cookies.mdx -------------------------------------------------------------------------------- /website/src/content/docs/features/cors.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/features/cors.mdx -------------------------------------------------------------------------------- /website/src/content/docs/features/csrf-prevention.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/features/csrf-prevention.mdx -------------------------------------------------------------------------------- /website/src/content/docs/features/defer-stream.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/features/defer-stream.mdx -------------------------------------------------------------------------------- /website/src/content/docs/features/envelop-plugins.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/features/envelop-plugins.mdx -------------------------------------------------------------------------------- /website/src/content/docs/features/error-masking.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/features/error-masking.mdx -------------------------------------------------------------------------------- /website/src/content/docs/features/execution-cancellation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/features/execution-cancellation.mdx -------------------------------------------------------------------------------- /website/src/content/docs/features/explicit-resource-management.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/features/explicit-resource-management.mdx -------------------------------------------------------------------------------- /website/src/content/docs/features/file-uploads.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/features/file-uploads.mdx -------------------------------------------------------------------------------- /website/src/content/docs/features/graphiql.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/features/graphiql.mdx -------------------------------------------------------------------------------- /website/src/content/docs/features/health-check.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/features/health-check.mdx -------------------------------------------------------------------------------- /website/src/content/docs/features/introspection.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/features/introspection.mdx -------------------------------------------------------------------------------- /website/src/content/docs/features/jwt.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/features/jwt.mdx -------------------------------------------------------------------------------- /website/src/content/docs/features/landing-page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/features/landing-page.mdx -------------------------------------------------------------------------------- /website/src/content/docs/features/logging-and-debugging.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/features/logging-and-debugging.mdx -------------------------------------------------------------------------------- /website/src/content/docs/features/monitoring.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/features/monitoring.mdx -------------------------------------------------------------------------------- /website/src/content/docs/features/parsing-and-validation-caching.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/features/parsing-and-validation-caching.mdx -------------------------------------------------------------------------------- /website/src/content/docs/features/persisted-operations.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/features/persisted-operations.mdx -------------------------------------------------------------------------------- /website/src/content/docs/features/request-batching.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/features/request-batching.mdx -------------------------------------------------------------------------------- /website/src/content/docs/features/request-customization.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/features/request-customization.mdx -------------------------------------------------------------------------------- /website/src/content/docs/features/response-caching.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/features/response-caching.mdx -------------------------------------------------------------------------------- /website/src/content/docs/features/schema.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/features/schema.mdx -------------------------------------------------------------------------------- /website/src/content/docs/features/sofa-api.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/features/sofa-api.mdx -------------------------------------------------------------------------------- /website/src/content/docs/features/subscriptions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/features/subscriptions.mdx -------------------------------------------------------------------------------- /website/src/content/docs/features/testing.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/features/testing.mdx -------------------------------------------------------------------------------- /website/src/content/docs/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/index.mdx -------------------------------------------------------------------------------- /website/src/content/docs/integrations/_meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/integrations/_meta.ts -------------------------------------------------------------------------------- /website/src/content/docs/integrations/integration-with-bun.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/integrations/integration-with-bun.mdx -------------------------------------------------------------------------------- /website/src/content/docs/integrations/integration-with-deno.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/integrations/integration-with-deno.mdx -------------------------------------------------------------------------------- /website/src/content/docs/integrations/integration-with-express.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/integrations/integration-with-express.mdx -------------------------------------------------------------------------------- /website/src/content/docs/integrations/integration-with-fastify.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/integrations/integration-with-fastify.mdx -------------------------------------------------------------------------------- /website/src/content/docs/integrations/integration-with-gcp.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/integrations/integration-with-gcp.mdx -------------------------------------------------------------------------------- /website/src/content/docs/integrations/integration-with-hapi.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/integrations/integration-with-hapi.mdx -------------------------------------------------------------------------------- /website/src/content/docs/integrations/integration-with-koa.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/integrations/integration-with-koa.mdx -------------------------------------------------------------------------------- /website/src/content/docs/integrations/integration-with-nestjs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/integrations/integration-with-nestjs.mdx -------------------------------------------------------------------------------- /website/src/content/docs/integrations/integration-with-nextjs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/integrations/integration-with-nextjs.mdx -------------------------------------------------------------------------------- /website/src/content/docs/integrations/integration-with-sveltekit.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/integrations/integration-with-sveltekit.mdx -------------------------------------------------------------------------------- /website/src/content/docs/integrations/z-other-environments.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/integrations/z-other-environments.mdx -------------------------------------------------------------------------------- /website/src/content/docs/migration/_meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/migration/_meta.ts -------------------------------------------------------------------------------- /website/src/content/docs/migration/migration-from-apollo-server.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/migration/migration-from-apollo-server.mdx -------------------------------------------------------------------------------- /website/src/content/docs/migration/migration-from-yoga-v1.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/migration/migration-from-yoga-v1.mdx -------------------------------------------------------------------------------- /website/src/content/docs/migration/migration-from-yoga-v2.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/migration/migration-from-yoga-v2.mdx -------------------------------------------------------------------------------- /website/src/content/docs/migration/migration-from-yoga-v3.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/migration/migration-from-yoga-v3.mdx -------------------------------------------------------------------------------- /website/src/content/docs/migration/migration-from-yoga-v4.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/migration/migration-from-yoga-v4.mdx -------------------------------------------------------------------------------- /website/src/content/docs/prepare-for-production.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/docs/prepare-for-production.mdx -------------------------------------------------------------------------------- /website/src/content/tutorial/_meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/tutorial/_meta.ts -------------------------------------------------------------------------------- /website/src/content/tutorial/advanced/00-introduction.mdx: -------------------------------------------------------------------------------- 1 | # Introduction 2 | 3 | TODO 4 | -------------------------------------------------------------------------------- /website/src/content/tutorial/advanced/01-authentication.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/tutorial/advanced/01-authentication.mdx -------------------------------------------------------------------------------- /website/src/content/tutorial/advanced/02-subscriptions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/tutorial/advanced/02-subscriptions.mdx -------------------------------------------------------------------------------- /website/src/content/tutorial/advanced/03-advanced-sorting.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/tutorial/advanced/03-advanced-sorting.mdx -------------------------------------------------------------------------------- /website/src/content/tutorial/basic/01-project-setup.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/tutorial/basic/01-project-setup.mdx -------------------------------------------------------------------------------- /website/src/content/tutorial/basic/02-getting-started.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/tutorial/basic/02-getting-started.mdx -------------------------------------------------------------------------------- /website/src/content/tutorial/basic/03-graphql-server.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/tutorial/basic/03-graphql-server.mdx -------------------------------------------------------------------------------- /website/src/content/tutorial/basic/04-a-simple-query.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/tutorial/basic/04-a-simple-query.mdx -------------------------------------------------------------------------------- /website/src/content/tutorial/basic/05-a-simple-mutation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/tutorial/basic/05-a-simple-mutation.mdx -------------------------------------------------------------------------------- /website/src/content/tutorial/basic/06-adding-a-database.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/tutorial/basic/06-adding-a-database.mdx -------------------------------------------------------------------------------- /website/src/content/tutorial/basic/08-graph-relations.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/tutorial/basic/08-graph-relations.mdx -------------------------------------------------------------------------------- /website/src/content/tutorial/basic/09-error-handling.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/tutorial/basic/09-error-handling.mdx -------------------------------------------------------------------------------- /website/src/content/tutorial/basic/10-filtering-and-pagination.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/tutorial/basic/10-filtering-and-pagination.mdx -------------------------------------------------------------------------------- /website/src/content/tutorial/basic/12-summary.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/tutorial/basic/12-summary.mdx -------------------------------------------------------------------------------- /website/src/content/tutorial/basic/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/content/tutorial/basic/index.mdx -------------------------------------------------------------------------------- /website/src/fonts/PPNeueMontreal-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/fonts/PPNeueMontreal-Medium.woff2 -------------------------------------------------------------------------------- /website/src/fonts/PPNeueMontreal-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/fonts/PPNeueMontreal-Regular.woff2 -------------------------------------------------------------------------------- /website/src/fonts/PPNeueMontreal-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/fonts/PPNeueMontreal-SemiBold.woff2 -------------------------------------------------------------------------------- /website/src/mdx-components.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/src/mdx-components.ts -------------------------------------------------------------------------------- /website/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/tailwind.config.ts -------------------------------------------------------------------------------- /website/test/e2e/.gitignore: -------------------------------------------------------------------------------- 1 | output 2 | -------------------------------------------------------------------------------- /website/test/e2e/homepage-screenshot.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/test/e2e/homepage-screenshot.spec.ts -------------------------------------------------------------------------------- /website/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-yoga/HEAD/website/tsconfig.json --------------------------------------------------------------------------------