GithubHelp home page GithubHelp logo

ahilke / typegraphql-nestjs-inject-context Goto Github PK

View Code? Open in Web Editor NEW
0.0 1.0 0.0 208 KB

Reproduction for https://github.com/MichalLytek/typegraphql-nestjs/issues/54

License: MIT License

JavaScript 5.07% TypeScript 94.93%

typegraphql-nestjs-inject-context's Introduction

Reproduction of Injecting Context with @nestjs/graphql and typegraphql-nestjs

This repository shows a working example of @Inject(CONTEXT) with @nestjs/graphql and an equivalent broken example in typegraphql-nestjs.

@nestjs/graphql

Based on https://github.com/nestjs/nest/tree/master/sample/23-graphql-code-first.

To reproduce:

cd nestjs-graphql
npm ci
npm run start

In a new shell:

curl --location '127.0.0.1:3000/graphql' \
--header 'Content-Type: application/json' \
--data '{"query":"query GetRecipes {\n  # returning request scoped recipes list from `RecipeService`\n  # which is empty for every request (`recipes: Recipe[] = []`)\n  recipes {\n    title\n    description\n  }\n}","variables":{}}'

Result: The first shell prints the headers of the request.

For the relevant code, see nestjs-graphql/src/recipes/recipes.service.ts.

typegraphql-nestjs

Based on https://github.com/MichalLytek/typegraphql-nestjs/tree/master/examples/3-request-scoped.

To reproduce:

cd typegraphql-nestjs
npm ci
npm run start

In a new shell:

curl --location '127.0.0.1:3000/graphql' \
--header 'Content-Type: application/json' \
--data '{"query":"query GetRecipes {\n  # returning request scoped recipes list from `RecipeService`\n  # which is empty for every request (`recipes: Recipe[] = []`)\n  recipes {\n    title\n    description\n  }\n}","variables":{}}'

Result: The first shell prints undefined

For the relevant code, see typegraphql-nestjs/src/recipe/service.ts.

typegraphql-nestjs-inject-context's People

Contributors

ahilke avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.