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** Update by aggregation doesn't work as expected. **Type definitions** ```graphql type User { name: String! likedPosts: [Post!]! @relationship(type: "LIKES", direction: OUT, properties: "likeProperties") } type Post {...

confirmed
bug report

**Is your feature request related to a problem? Please describe.** Reported in https://community.neo4j.com/t5/general-discussions/determine-which-field-is-causing-constrain-error-response/m-p/61994, it's impossible to build UI components such as "this username is already taken, please choose another username"...

feature request

**Is your feature request related to a problem? Please describe.** `connectOrCreate` currently only support `where` lookup on `unique` fields but this is less than useful and seems like an artificial...

feature request

**Is your feature request related to a problem? Please describe.** This would allow for modification of nodes/relationships following the completion of the Cypher generated by the GraphQL Library.

feature request

**Describe the bug** When querying an interface, neo4j generates a union for every subtypes of that interface resulting in very slow queries even if you don't request type conditions **Type...

performance

Draft of the Unwind-create on the new translation-layer, There is a minor change that field-level authorization was ignored if none of the batch inputs were defined, this extra check is...

graphql

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [eslint-plugin-jest](https://togithub.com/jest-community/eslint-plugin-jest) | [`27.9.0` -> `28.5.0`](https://renovatebot.com/diffs/npm/eslint-plugin-jest/27.9.0/28.5.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/eslint-plugin-jest/28.5.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)...

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [eslint](https://eslint.org) ([source](https://togithub.com/eslint/eslint)) | [`8.57.0` -> `9.2.0`](https://renovatebot.com/diffs/npm/eslint/8.57.0/9.2.0) |...

**Describe the bug** Setting a field with relationship is possible with an update mutation, although settable onUpdate is set to false. **Type definitions** ````graphql type Identifier { value: String! identifierType:...

feature request
reopened

My take on custom resolvers is that they are an excellent way to generate calculated fields, i.e., a field output that doesn't require storing additional data in the database. However,...

feature request