Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

changesets for branch dev #5646

Merged
merged 1 commit into from
Oct 9, 2024
Merged

changesets for branch dev #5646

merged 1 commit into from
Oct 9, 2024

Conversation

neo4j-team-graphql
Copy link
Collaborator

@neo4j-team-graphql neo4j-team-graphql commented Oct 9, 2024

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]

Minor Changes

  • #5633 cfa296b Thanks @angrykoala! - Remove connection wrapper on vector queries.

    Previous:

    query MovieVectorQuery($vector: [Float!]!) {
        myVectorQuery(vector: $vector) {
            moviesConnection {
                edges {
                    cursor
                    score
                    node {
                        title
                    }
                }
            }
        }
    }

    Now:

    query MovieVectorQuery($vector: [Float!]!) {
        myVectorQuery(vector: $vector) {
            edges {
                cursor
                score
                node {
                    title
                }
            }
        }
    }

    Vector index is now a stable feature.

Patch Changes

  • #5647 9feeda9 Thanks @MacondoExpress! - Fix a bug that causes an invalid Cypher generated for authorization filters in the connectOrCreate operation.

@neo4j/[email protected]

Patch Changes

@darrellwarde darrellwarde merged commit a166629 into dev Oct 9, 2024
89 of 91 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