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 #5747

Merged
merged 1 commit into from
Nov 18, 2024
Merged

changesets for branch dev #5747

merged 1 commit into from
Nov 18, 2024

Conversation

neo4j-team-graphql
Copy link
Collaborator

@neo4j-team-graphql neo4j-team-graphql commented Nov 1, 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

Patch Changes

  • #5738 c6ea37d Thanks @angrykoala! - Add deprecation warning when using @unique

  • #5788 62a9f61 Thanks @angrykoala! - Deprecate single element relationships:

    type Movie {
        director: Person @relationship(type: "DIRECTED", direction: "IN")
    }

    In favor of list relationships:

    type Movie {
        director: [Person!]! @relationship(type: "DIRECTED", direction: "IN")
    }

    1-1 relationships cannot be reliably enforced, leading to a data inconsistent between the schema and the database. For this reason, these have been removed in favor of the more accurate list relationships.

  • #5771 c56f9b0 Thanks @MacondoExpress! - Deprecate implicit SET:

    mutation {
        updateMovies(update: { id: "2" }) {
            movies {
                id
            }
        }
    }

    in favour of the explicit _SET version:

    mutation {
        updateMovies(update: { id_SET: "2" }) {
            movies {
                id
            }
        }
    }
  • #5771 f624668 Thanks @MacondoExpress! - Added implicitSet to the excludeDeprecatedFields setting, to disable generation of the deprecated mutation field without the suffix _SET.

  • #5758 7521476 Thanks @angrykoala! - Argument overwrite in connect operations has been deprecated

  • #5748 f23bb91 Thanks @darrellwarde! - The connectOrCreate operation has been deprecated and will be removed in the next major version of the Neo4j GraphQL Library. Its implementation has always been more limited than the other operations, so the decision has been taken to remove it for the time being with a view of potentially refocussing on it again in the future.

  • #5764 1ec1bd3 Thanks @darrellwarde! - Fix issues Sorting vector search results by score without score in selection set results in error #5759 and Ordering of sorting criteria not honoured in vector search query #5760 to do with sorting vector search results

@neo4j-team-graphql neo4j-team-graphql force-pushed the changeset-release/dev branch 15 times, most recently from b974e4a to 7cc063d Compare November 8, 2024 14:15
@neo4j-team-graphql neo4j-team-graphql force-pushed the changeset-release/dev branch 15 times, most recently from 30d3443 to da2e743 Compare November 14, 2024 00:31
@neo4j-team-graphql neo4j-team-graphql force-pushed the changeset-release/dev branch 9 times, most recently from 6f8aa1e to 3c2cbe2 Compare November 18, 2024 13:42
@darrellwarde darrellwarde merged commit 426bded into dev Nov 18, 2024
42 of 44 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