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

**Is your feature request related to a problem? Please describe.** Currently, the Neo4jGraphQLError classes cannot be imported into the own project. However, it would be useful to import these classes...

feature request

**Is your feature request related to a problem? Please describe.** I'd like to subscribe to updates on the properties of a relationship. Currently, subscriptions only contain options for subscribing to...

feature request

# Problem **Setup** ```graphql type Node { children: [Node!]! @relationship(type: "CHILDREN", type: OUT) user: [User!]! @relationship(type: "MEMBER_OF", type: IN) // This is the connection I want allUserOfChildren: AllUserOfChildrenConnection } type...

feature request

Behaviour is different when passing `null` or `undefined` to a query or mutation. ``` query($id: ID) { user(where:{id: $id}) { name } } ``` In this example, if `$id` is...

bug report

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@types/node](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node)) | [`20.12.8` -> `20.12.10`](https://renovatebot.com/diffs/npm/@types%2fnode/20.12.8/20.12.10) |...

**Describe the bug** When trying to mutate a type with @authorization through a `@cypher` like: ``` type Mutation { deleteCar(input: DeleteCarInput!): DeletedCar! @cypher( statement: """ MATCH(s:Car) WHERE (s.id = $input.carId)...

confirmed
bug report

**Describe the bug** I have an application using Nestjs, Graphql and Neo4j. It has a user model and I have used `@neo4j/graphql-ogm` package and it's `generate` function to generate OGM...

bug report
unreproducible

**Describe the regression** Up until version 4.0, there was a bug in which String and IDs were using the same `features.filters`. [In this PR](https://github.com/neo4j/graphql/pull/3097) the issue was fixed but the...

regression report

# Description This PR contains the basic schema and resolver for the v6 API

# Description This PR fixes authorization for unions in which some variables where missing

graphql
fix