Skip to content

Commit 55ac846

Browse files
authored
Merge pull request #6567 from neo4j/changeset-release/dev
changesets for branch `dev`
2 parents 4c2f4d3 + d43eadb commit 55ac846

File tree

6 files changed

+34
-36
lines changed

6 files changed

+34
-36
lines changed

.changeset/chatty-cobras-guess.md

Lines changed: 0 additions & 19 deletions
This file was deleted.

.changeset/red-years-shine.md

Lines changed: 0 additions & 13 deletions
This file was deleted.

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

Lines changed: 1 addition & 1 deletion
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.2.6",
13+
"@neo4j/graphql": "^7.2.7",
1414
"graphql": "16.11.0",
1515
"graphql-tag": "^2.12.6",
1616
"neo4j-driver": "^5.8.0"

packages/graphql/CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,35 @@
11
# @neo4j/graphql
22

3+
## 7.2.7
4+
5+
### Patch Changes
6+
7+
- [#6555](https://github.com/neo4j/graphql/pull/6555) [`95fe716`](https://github.com/neo4j/graphql/commit/95fe716c982a936aec379f1b2a937e84a74c2219) Thanks [@angrykoala](https://github.com/angrykoala)! - Optimize connection queries without `totalCount` or `pageInfo` such as:
8+
9+
```graphql
10+
query {
11+
moviesConnection(first: 20, sort: [{ title: ASC }]) {
12+
edges {
13+
node {
14+
title
15+
}
16+
}
17+
}
18+
}
19+
```
20+
21+
Will no longer calculate `totalCount` in the generated Cypher
22+
23+
- [#6554](https://github.com/neo4j/graphql/pull/6554) [`d3b7b59`](https://github.com/neo4j/graphql/commit/d3b7b599a31ffa0ceeacb86ab34a6a2a1967d256) Thanks [@angrykoala](https://github.com/angrykoala)! - Improved performance for Connection queries for cases when only `totalCount` is requested.
24+
25+
```graphql
26+
query {
27+
moviesConnection(where: { title: { eq: "Forrest Gump" } }) {
28+
totalCount
29+
}
30+
}
31+
```
32+
333
## 7.2.6
434

535
### Patch Changes

packages/graphql/package.json

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

yarn.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2626,7 +2626,7 @@ __metadata:
26262626
languageName: node
26272627
linkType: soft
26282628

2629-
"@neo4j/graphql@npm:^7.0.0, @neo4j/graphql@npm:^7.2.6, @neo4j/graphql@workspace:packages/graphql":
2629+
"@neo4j/graphql@npm:^7.0.0, @neo4j/graphql@npm:^7.2.7, @neo4j/graphql@workspace:packages/graphql":
26302630
version: 0.0.0-use.local
26312631
resolution: "@neo4j/graphql@workspace:packages/graphql"
26322632
dependencies:
@@ -4597,7 +4597,7 @@ __metadata:
45974597
"@apollo/federation-subgraph-compatibility": "npm:2.2.1"
45984598
"@apollo/server": "npm:^4.7.0"
45994599
"@graphql-tools/wrap": "npm:^10.0.0"
4600-
"@neo4j/graphql": "npm:^7.2.6"
4600+
"@neo4j/graphql": "npm:^7.2.7"
46014601
fork-ts-checker-webpack-plugin: "npm:9.1.0"
46024602
graphql: "npm:16.11.0"
46034603
graphql-tag: "npm:^2.12.6"

0 commit comments

Comments
 (0)