Hello, I've been developing with the grandstack for awhile now using my desktop neo4j db. I'm now attempting to push to production, so I'd like to use a neo4j database that is not local for the production app. I am attempting to use a neo4j sandbox d...
I'm using JWTs for user auth in my app and I have them accessible in the resolvers via the context object, but I'm not quite sure the best way to use them in a granular way. I'd like to check that a user's req.userId matches the authorId that exists ...
Could someone help me understand how to reach out to my neo4j database to check if a user exists inside my custom resolver for login?
Mutation: {
register: async (_, { id, email, password }, context, info) => {
const hashedPassword = await...
I am attempting to store comments in a GRANDstack application. I currently store the comment like this:
type Comment {
id: ID!
author: ID!
delta: String
}
Where delta is a quilljs delta object that I have stringified and looks like this:
{"ops":[{"in...
Exactly the same as in the grandstack starter. I've only added React components and created more resolvers and graphql types but those all function just fine with my localhost neo4j db.
Yeah I came across that post, unfortunately I'm already using a newer neo4j driver 4.0.2 so I'm not sure how to resolve this problem. I'm going along with the grandstack create app, the only difference is when initializing the create-grandstack-app I...