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** This is probably heavily correlated to #915. I´m still converting my old neo4j-graphql-js queries to V3.0.1 and I need the custom scalar UnsignedInt from 'graphql-scalars'. **Type definitions**...

good first issue
feature request

Given the schema from test [rfc-003](https://github.com/neo4j/graphql/blob/dev/packages/graphql/tests/schema/rfcs/rfc-003.test.ts#L97-L112): ```graphql interface SourceInterface { targets: [Target!]! @relationship(type: "HAS_TARGET", direction: OUT) target1: Target! @relationship(type: "HAS_TARGET", direction: OUT) target2: Target @relationship(type: "HAS_TARGET", direction: OUT) } type...

breaking
enhancement

**Is your feature request related to a problem? Please describe.** Support resolving references when using GraphQL Federation. This existed in `neo4j-graphql-js`. https://github.com/neo4j-graphql/neo4j-graphql-js/blob/dev/docs/apollo-federation.md **Describe the solution you'd like** Automatically generate the...

feature request

**Describe the bug** A clear and concise description of what the bug is. **Type definitions** ```gql type Foo { uuid:ID @id name: String @unique sth: String bar: [Bar!]! @relationship(type:"HAS", direction:OUT)...

confirmed
bug report
reopened

The previous version has the easiest way to define resolvers to convert to cypher using neo4jgraphql contact(object, params, ctx, resolveInfo) { return neo4jgraphql(object, params, ctx, resolveInfo); } There is no...

regression report

**Describe the bug** A `@cypher` directive which returns a list of interfaces causes a graphql server error: `Expected Iterable` **Type definitions** ```graphql interface Media { id : ID! @id title...

confirmed
bug report
cypher
feature: @cypher

I use addMocksToSchema to test schema and validate queries and resolvers. When I try to use the same after migration from neo4j-graphql-js, it gives an error Unknown directive "@exclude". Unknown...

help wanted
question
close

**Describe the solution you'd like** For the following type definitions: ```gql type Post { content: String likes: [User!]! @relationship(type: "LIKES", direction: IN) } type User { name: String! } ```...

feature request

**Is your feature request related to a problem? Please describe.** At present, pagination is inconsistent. For example, for the following type definitions: ```gql type Movie { title: String! actors: [Actor!]!...

feature request
breaking

**Describe the bug** This was described indirectly in #636 and is also related to #195. I wanted to file this to discuss this further, because I think there are some...

bug report
needs more information