neo4j-graphql-js icon indicating copy to clipboard operation
neo4j-graphql-js copied to clipboard

NOTE: This project is no longer actively maintained. Please consider using the official Neo4j GraphQL Library (linked in README).

Results 101 neo4j-graphql-js issues
Sort by recently updated
recently updated
newest added

Hello, I'm trying to create a query to login a user, the type of my query is the AuthPayload, inside this payload I have the token and the user: ```...

@johnymontana explained to me [here](https://github.com/neo4j-graphql/neo4j-graphql-js/pull/247#issuecomment-494081834) that I run into the error: ``` Error: Cannot use GraphQLObjectType "Query" from another module or realm. ``` because you don't have `graphql` as a...

3.0 Breaking Change

# Problem @johnymontana explained to me [in this comment](https://github.com/neo4j-graphql/neo4j-graphql-js/pull/247#issuecomment-494579107) that all the tests are expected to pass. What I have to do is to trash the database and re-import the...

This maybe something I missed in the docs, but I didn't see a way to intercept a mutation call before it generates the required cypher statement or statements? Some of...

Hello, i have started using this module and grand stack recently and had a simple question that others may have had. Can i create a new node and connect it...

When I use the following query, the search is not case sensitive. For example, I want to search for "New Arrivals" or "new arrivals", But that is not possible now....

As part of (or prior to) the augment process, validate the user provided type definitions (including use of `@relation` and `@cypher` directive) to validate type defs (for example all fields...

I had been trying to use neo4j-graphql-js to layer neo4j and graphql into an existing REST API Project. I was consistently getting an error TypeError: graphql_1.parse is not a function....

Hi, When we have a type with a Nullable List of Non-Null Scalar like in the example below ```graphql type Book { id: ID! name: String tags: [String!] } ```...

The library needs a way of implementing all Neo4j database constraints in order for the GraphQL schema to correctly function as the definitive 'schema' for a project. Uniqueness is the...