graphql icon indicating copy to clipboard operation
graphql copied to clipboard

A GraphQL to Cypher query execution layer for Neo4j and JavaScript GraphQL implementations.

Results 245 graphql issues
Sort by recently updated
recently updated
newest added

**Describe the bug** In the list of available operations for bind is "CREATE" missing, while it is used in the example directly under it. CREATE also seems to be missing...

documentation

# Description In our project we have some custom mutations that accept some input types with Date and DateTime scalars. Eventually these will be passed in to the OGM to...

graphql
fix

**Describe the bug** It appears that the `@auth` directive can be used without an `auth` plugin being provided. An error should be thrown from type definition validation if this case...

confirmed
bug report

As it stands, schema generation can fail when a type implements more than one interface which is used as the type of a relationship field. For example, this example from...

feature request

**Is your feature request related to a problem? Please describe.** It can be helpful to have a field on a GraphQL type that corresponds to multiple relationship types in the...

feature request
tracked

**Is your feature request related to a problem? Please describe.** When using `connectOrCreate` and the node does not exist, users should be able to connect the new node as they...

feature request

# Description Fixes a server error when filtering by connection fields in a where clause when the target of the relation is an interface. # Issue This is a proof...

graphql

**Describe the bug** The top level where filters with a relationship connection causes a server error if the relation is to an interface. **Type definitions** ```graphql interface Media { id...

confirmed
bug report

**Is your feature request related to a problem? Please describe.** There is currently no way to customise how Mutation names are generated - you might want them in PascalCase or...

feature request

Hello, In the old `neo4j-graphql-js` library it was possible to access the result of graphql translation to cypher ```typescript import {cypherQuery } from `neo4j-graphql-js`; ... let cypher = cypherQuery(params, ctx,...

feature request
small