GithubHelp home page GithubHelp logo

Comments (3)

TheRobBrennan avatar TheRobBrennan commented on July 28, 2024 1

Resolved!!! Special thanks to @danstarns for helping me troubleshoot this.

The real magic to get $jwt to work is to have a JWT_SECRET environment variable defined for Neo4j and for the backend API.

In my particular project - which is using Next.js for both frontend and backend code - I needed to not only define this variable based on a value from Auth0 but also update the next.config.js so that it is available to the backend API:
Screen Shot 2021-01-27 at 11 30 18 AM

For reference, here is an example of the query which is using the $jwt from the @neo4j/graphql library:

    """
    A sample query to return details for the authenticated user currently logged in to our system
    """
    me: User
      @cypher(
        statement: """
        MATCH (u:User {sub: $jwt.sub})
        RETURN u
        """
    ),

from graphql.

TheRobBrennan avatar TheRobBrennan commented on July 28, 2024

To reproduce the above bug, please feel free to clone and use my example project at https://github.com/TheRobBrennan/heimdall

from graphql.

TheRobBrennan avatar TheRobBrennan commented on July 28, 2024

This is still an open issue. The pull request showing as merged was not blocked.

I am still experiencing this in my sample project - even after making sure Neo4j v4.1.0 or greater is on the back-end 😇

Here is an example of the me query in the type definitions file - along with the User type that it should return:
00 me-expecting-jwt-sub
00a me-User-type-definition

Here is an example of the me query from an unauthenticated user:
01 me-unauthenticated

Here is an example of the me query from a user with a valid JWT - demonstrating where MATCH (u:User {sub: $jwt.sub}) fails:
02 me-authenticated-returns-null

Here is an example of a custom helloAuth query that has to go out of its way to decode the JWT:
03-helloAuth-custom-resolver-works
03a-helloAuth-custom-resolver

from graphql.

Related Issues (20)

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.