Releases: neo4j/graphql
OGM 1.2.3
Updates the @neo4j/graphql
dependency.
Neo4j GraphQL Library 1.2.2
Fixes
- Adds a missing
WITH
clause when a nested field under top-level custom Cypher uses an@auth
directive (#328)
OGM 1.2.2
Updates @neo4j/graphql
dependency.
Neo4j GraphQL Library 2.0.0-alpha.3
Whats included
- #272
- #282 - Cursor based Pagination (Thanks @litewarp)
- #284
- #286
- #289
- #290
- #291
- #294
- #295
- #304
- #312
- #314
- #316
- #317
- #318
- #321
Notes
Lots of structural changes in this one, both internally and for the API. The changes that have been made to the API are for consistency sake and to better position the lib for future changes without breaking further things. Secondly, lots of bug fixes in this one to do with the new usage of subqueries for example, before you could not go from a normal projection to a connection and vice versa, and now you can. Then we have #282 that brings cursor-based pagination and finally, this includes Auth on connection fields.
OGM 2.0.0-alpha.3
Updates @neo4j/graphql
dependency.
Neo4j GraphQL Library 1.2.1
OGM 1.2.1
Updates the @neo4j/graphql
dependency.
Neo4j GraphQL Library 1.2.0
Adds the ability to pass JWT into lib for auth directive usage see #303
OGM 1.2.0
Updates the @neo4j/graphql
dependency.
Neo4j GraphQL Library 1.1.0
Features
- #251 Relationships are now automatically projected for Query level custom Cypher fields
- Make sure you're aware of the necessary character escaping for the
@cypher
directive (https://neo4j.com/docs/graphql-manual/current/type-definitions/cypher/#_character_escaping)
- Make sure you're aware of the necessary character escaping for the
Fixes
- #297 Fixed a bug which was the underlying cause of:
Int
andFloat
values not being parsed and serialized correctlyDateTime
andDate
values being returned as objects rather than as stringsPoint
elements being resolved tonull
and throwing an error__resolveType
resolvers being dropped during schema augmentation
- #281 Stop incorrect Error being thrown for unauthenticated Query/Mutation (thanks to @mathix420 for this one)