neo4j-graphql-js
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).
This lets you use preprocessed ASTs from stuff like [apollographql/graphql-tag](https://github.com/apollographql/graphql-tag) with this library. Eg: ```typescript import schemaGql from './schema.gql'; // or... const schemaGql = gql` ... `; const schema =...
# Goals Allow for each node type and each relation type to have any number (>=0) of primary keys (PKs) specified in the GraphQL schema, and use the collection of...
Generated scopes contain a space in their name. By standard scopes are sent to the backend as a space separated list. See [RFC 6749](https://tools.ietf.org/html/rfc6749#section-3.3) This change removes the spaces from...
Subscriptions are not yet supported, but it is still possible to implement it manually, see https://github.com/neo4j-graphql/neo4j-graphql-js/issues/164#issuecomment-450013413 I tried to do this for a personal project, and was met with the...
I added `@created` and `@updated` GraphQL directives which when attached to a `DateTime` field will automatically populate with a server timestamp every time the object is created or modified. These...
Hi, The update, merge and delete mutations used the first argument as the primary key in the cypher query. This will result in unexpected behaviour and can wipe your data...
Fixes https://github.com/neo4j-graphql/neo4j-graphql-js/issues/424
Most applications need case insensitive filtering. This PR adds that feature through the use of a `contains_i` input type. ``` { Movie(filter: {title_contains_i: "river"}) { title } } ``` ##...
Fixes: #414 Aims to let user-defined resolvers for Interfaces and Queries work. For example users can define a union like: ```graphql union SearchItem = Actor | Movie ``` And the...
Why are these files executable at all?