Skip to content

Releases: neo4j/graphql

@neo4j/[email protected]

09 Oct 15:40
a166629
Compare
Choose a tag to compare

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]

09 Oct 09:30
6e8092c
Compare
Choose a tag to compare

Minor Changes

Patch Changes

  • #5632 3c69066 Thanks @darrellwarde! - The options argument of assertIndexesAndConstraints has been deprecated and the creation of indexes and constraints will no longer be support in the next major version of the library.

  • #5606 e4ac1d8 Thanks @angrykoala! - Fix delete operations inside updates for unions

  • #5616 b7552f8 Thanks @angrykoala! - Fix cardinality validation on nested unions

@neo4j/[email protected]

09 Oct 15:40
a166629
Compare
Choose a tag to compare

Patch Changes

@neo4j/[email protected]

09 Oct 09:30
6e8092c
Compare
Choose a tag to compare

Patch Changes

@neo4j/[email protected]

01 Oct 08:15
12c0b0d
Compare
Choose a tag to compare

Patch Changes

  • #5600 d3f4679 Thanks @mjfwebb! - Fix: disable schema generation for filtering on list cypher fields

@neo4j/[email protected]

01 Oct 08:15
12c0b0d
Compare
Choose a tag to compare

Patch Changes

@neo4j/[email protected]

27 Sep 14:43
c3630fd
Compare
Choose a tag to compare

Minor Changes

Patch Changes

  • #5583 d35b00d Thanks @angrykoala! - Deprecates top level arguments for nested operations on updates in favor of traversing the update argument. The deprecated arguments are:

    • create
    • delete
    • connect
    • disconnect
    • connectOrCreate

    For example, for create:

    deprecated

    mutation UpdatePeople {
        updatePeople(create: { movies: { node: { title: "The Good" } } }) {
            people {
                name
            }
        }
    }

    recommended

    mutation UpdatePeople {
        updatePeople(update: { movies: { create: { node: { title: "The Good" } } } }) {
            people {
                name
            }
        }
    }

    These deprecated arguments can be removed from the schema with the flag nestedUpdateOperationsFields in excludeDeprecatedFields:

    const neoSchema = new Neo4jGraphQL({
        typeDefs,
        features: {
            excludeDeprecatedFields: {
                nestedUpdateOperationsFields: true,
            },
        },
    });
  • #5585 21c18ee Thanks @mjfwebb! - Fix: standard JWT claim fields can now correctly be used even when a custom JWT payload is not defined.

  • #5590 e95db9c Thanks @angrykoala! - Fix subscriptions with autogenerated uids #5586

@neo4j/[email protected]

27 Sep 14:43
c3630fd
Compare
Choose a tag to compare

Patch Changes

@neo4j/[email protected]

06 Sep 14:08
d2ee58a
Compare
Choose a tag to compare

Patch Changes

@neo4j/[email protected]

06 Sep 14:08
d2ee58a
Compare
Choose a tag to compare

Patch Changes