Tag: neo4j-graphql-js
-
How to correctly restrict access to nested content in Neo4J-GraphQL?
0 I’d like to implement a basic Post system, such as described in the documentation. A Post is related to a user, I’d like a Post to be only created/updated/deleted by its author. type Post { title: String! content: String! author: User! @relationship(type: "AUTHORED", direction: IN) } type User @authorization(validate: [{ when: [BEFORE], where: {…