Skip to content

Conversation

neo4j-team-graphql
Copy link
Collaborator

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to dev, this PR will be updated.

Releases

@neo4j/[email protected]

Patch Changes

  • #6555 95fe716 Thanks @angrykoala! - Optimize connection queries without totalCount or pageInfo such as:

    query {
        moviesConnection(first: 20, sort: [{ title: ASC }]) {
            edges {
                node {
                    title
                }
            }
        }
    }

    Will no longer calculate totalCount in the generated Cypher

  • #6554 d3b7b59 Thanks @angrykoala! - Improved performance for Connection queries for cases when only totalCount is requested.

    query {
        moviesConnection(where: { title: { eq: "Forrest Gump" } }) {
            totalCount
        }
    }

@angrykoala angrykoala merged commit 55ac846 into dev Aug 12, 2025
46 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants