Skip to content

Releases: neo4j/graphql

@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

@neo4j/[email protected]

30 Aug 14:46
947cc40
Compare
Choose a tag to compare

Patch Changes

@neo4j/[email protected]

30 Aug 14:46
947cc40
Compare
Choose a tag to compare

Patch Changes

@neo4j/[email protected]

20 Aug 09:24
0bfe25c
Compare
Choose a tag to compare

@neo4j/[email protected]

20 Aug 09:24
0bfe25c
Compare
Choose a tag to compare

Minor Changes

Patch Changes