Releases: neo4j/graphql
Releases · neo4j/graphql
@neo4j/graphql-ogm@5.5.3
Patch Changes
- Updated dependencies [
9866da6
]:- @neo4j/graphql@5.5.3
@neo4j/graphql@5.5.2
Patch Changes
- #5387
a40182d
Thanks @angrykoala! - Fix connection operations with a fulltext argument
@neo4j/graphql-ogm@5.5.2
Patch Changes
- Updated dependencies [
a40182d
]:- @neo4j/graphql@5.5.2
@neo4j/graphql@5.5.1
@neo4j/graphql@5.5.1
@neo4j/graphql@5.5.0
Minor Changes
-
#5316
a26f32f
Thanks @mjfwebb! - Add@vector
directive.The directive enables two forms of user input, depending on the index configuration: vector input which in GraphQL is a
[Float!]
, and phrase input which is aString
.For example to use the
@vector
directive with a vector index, you would define a type like this:type Movie @vector( indexes: [ { indexName: "myVectorIndexName", propertyName: "embedding", queryName: "searchForRelatedMovies" } ] ) { title: String! }
To configure a provider to use the GenAI plugin and have phrase input, you would define a type like this:
type Movie @vector( indexes: [ { indexName: "myVectorIndexName" propertyName: "embedding" queryName: "searchForRelatedMovies" provider: OPEN_AI } ] ) { title: String! }
The constructor of the
Neo4jGraphQL
class would need to be updated to include theOpenAI
provider under thevector
feature like this:const neoSchema = new Neo4jGraphQL({ typeDefs, driver, features: { vector: { OpenAI: { token: "my-open-ai-token", model: "text-embedding-3-small", }, }, }, });
Patch Changes
- #5317
f4c41fe
Thanks @angrykoala! - Fix non-array validate argument on authorization directive #4534
@neo4j/graphql-ogm@5.5.1
Patch Changes
-
#5346
fd78490
Thanks @nicecatch! - Fixed thefulltext
argument in OGM aggregate queries -
Updated dependencies []:
- @neo4j/graphql@5.5.1
@neo4j/graphql-ogm@5.5.0
Patch Changes
- Updated dependencies [
f4c41fe
,a26f32f
]:- @neo4j/graphql@5.5.0
@neo4j/graphql@5.4.5
Patch Changes
- #5304
92fdf2e
Thanks @angrykoala! - Fix bug on generated Cypher with the @cypher directive and authorization rules #5270
@neo4j/graphql-ogm@5.4.5
Patch Changes
- Updated dependencies [
92fdf2e
]:- @neo4j/graphql@5.4.5
@neo4j/graphql@5.4.4
Patch Changes
- #5257
2e3aac9
Thanks @MacondoExpress! - Fix projection of spatial fields withsrid
field