Skip to content

Commit abd8d51

Browse files
authored
Merge pull request #6212 from neo4j/changeset-release/dev
changesets for branch `dev`
2 parents 991441d + 2eb8256 commit abd8d51

File tree

7 files changed

+38
-41
lines changed

7 files changed

+38
-41
lines changed

.changeset/great-pets-flash.md

-5
This file was deleted.

.changeset/plain-ants-build.md

-27
This file was deleted.

.changeset/wicked-cars-switch.md

-5
This file was deleted.

packages/apollo-federation-subgraph-compatibility/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"dependencies": {
1111
"@apollo/server": "^4.7.0",
1212
"@graphql-tools/wrap": "^10.0.0",
13-
"@neo4j/graphql": "^7.0.0",
13+
"@neo4j/graphql": "^7.1.0",
1414
"graphql": "16.11.0",
1515
"graphql-tag": "^2.12.6",
1616
"neo4j-driver": "^5.8.0"

packages/graphql/CHANGELOG.md

+34
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,39 @@
11
# @neo4j/graphql
22

3+
## 7.1.0
4+
5+
### Minor Changes
6+
7+
- [#6199](https://github.com/neo4j/graphql/pull/6199) [`4404026`](https://github.com/neo4j/graphql/commit/4404026b88929cefbd92aef5fc05e333e11469d1) Thanks [@angrykoala](https://github.com/angrykoala)! - Add support for `@cypher` directive of fields targeting types that do not use the `@node` directive. For example:
8+
9+
```graphql
10+
type Movie @node {
11+
title: String
12+
id: String!
13+
link: Link!
14+
@cypher(
15+
statement: """
16+
MATCH(l:${Link})
17+
WHERE l.movieId=this.id
18+
RETURN l {.name, .url} as link
19+
"""
20+
columnName: "link"
21+
)
22+
}
23+
24+
type Link {
25+
movieId: String!
26+
url: String!
27+
name: String!
28+
}
29+
```
30+
31+
### Patch Changes
32+
33+
- [#6223](https://github.com/neo4j/graphql/pull/6223) [`de2dcea`](https://github.com/neo4j/graphql/commit/de2dceaae81d736c21b76a24f8e25b592edfb802) Thanks [@angrykoala](https://github.com/angrykoala)! - Fix bug with `@populatedBy`. Callback wouldn't be triggered by nested create operations for relationship fields.
34+
35+
- [#6236](https://github.com/neo4j/graphql/pull/6236) [`1866286`](https://github.com/neo4j/graphql/commit/18662864afb0fb1e7858f02896e47a46c49447dc) Thanks [@angrykoala](https://github.com/angrykoala)! - Fix bug with some filters not properly working on subscriptions.
36+
337
## 7.0.0
438

539
### Major Changes

packages/graphql/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@neo4j/graphql",
3-
"version": "7.0.0",
3+
"version": "7.1.0",
44
"description": "A GraphQL to Cypher query execution layer for Neo4j and JavaScript GraphQL implementations",
55
"keywords": [
66
"neo4j",

yarn.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -2294,7 +2294,7 @@ __metadata:
22942294
languageName: node
22952295
linkType: soft
22962296

2297-
"@neo4j/graphql@npm:^7.0.0, @neo4j/graphql@workspace:packages/graphql":
2297+
"@neo4j/graphql@npm:^7.0.0, @neo4j/graphql@npm:^7.1.0, @neo4j/graphql@workspace:packages/graphql":
22982298
version: 0.0.0-use.local
22992299
resolution: "@neo4j/graphql@workspace:packages/graphql"
23002300
dependencies:
@@ -4143,7 +4143,7 @@ __metadata:
41434143
"@apollo/federation-subgraph-compatibility": "npm:2.2.1"
41444144
"@apollo/server": "npm:^4.7.0"
41454145
"@graphql-tools/wrap": "npm:^10.0.0"
4146-
"@neo4j/graphql": "npm:^7.0.0"
4146+
"@neo4j/graphql": "npm:^7.1.0"
41474147
fork-ts-checker-webpack-plugin: "npm:9.1.0"
41484148
graphql: "npm:16.11.0"
41494149
graphql-tag: "npm:^2.12.6"

0 commit comments

Comments
 (0)