Skip to content

Releases: neo4j/graphql

@neo4j/graphql@5.4.2

31 May 15:09
795c410
Compare
Choose a tag to compare

Patch Changes

@neo4j/graphql-ogm@5.4.2

31 May 15:09
795c410
Compare
Choose a tag to compare

Patch Changes

  • Updated dependencies [7046091]:
    • @neo4j/graphql@5.4.2

@neo4j/graphql@4.4.7

30 May 10:17
cc4353e
Compare
Choose a tag to compare

Patch Changes

@neo4j/graphql-ogm@4.4.7

30 May 10:17
cc4353e
Compare
Choose a tag to compare

Patch Changes

  • Updated dependencies [a77109e]:
    • @neo4j/graphql@4.4.7

@neo4j/graphql@5.4.1

27 May 08:18
22a954f
Compare
Choose a tag to compare

Patch Changes

  • #5147 97b86b5 Thanks @MacondoExpress! - Fix a bug that caused custom Cypher queries to fail when complex authorization rules are applied.

  • #5148 1106af4 Thanks @angrykoala! - Fix schema error when defining matrix values as arguments on custom fields #5142.

    For example:

    type Query {
        test(fields: [[String!]]!): String!
    }

@neo4j/graphql-ogm@5.4.1

27 May 08:18
22a954f
Compare
Choose a tag to compare

Patch Changes

neo-place@0.1.5

21 May 15:54
9542de0
Compare
Choose a tag to compare

Patch Changes

@neo4j/graphql@5.4.0

21 May 15:54
9542de0
Compare
Choose a tag to compare

Minor Changes

Patch Changes

@neo4j/graphql-ogm@5.4.0

21 May 15:54
9542de0
Compare
Choose a tag to compare

Patch Changes

@neo4j/graphql@5.3.6

13 May 14:08
509fce4
Compare
Choose a tag to compare

Patch Changes

  • #5103 05d83b2 Thanks @angrykoala! - Optimise schema generation for aggregations, reducing schema generation time

  • #5085 c82f7b8 Thanks @angrykoala! - Validation warning on objects without resolver only appear under env variable DEBUG=@neo4j/graphql:graphql

  • #5104 bcc3719 Thanks @angrykoala! - Add feature option excludeDeprecatedFields to reduce the schema size by removing autogenerated fields that have been deprecated:

    Usage:

    const neoSchema = new Neo4jGraphQL({
        typeDefs,
        driver,
        features: {
            excludeDeprecatedFields: {
                bookmark: true,
                negationFilters: true,
                arrayFilters: true,
                stringAggregation: true,
                aggregationFilters: true,
            },
        },
    });

    This flag will remove the fields marked as @deprecated that have been autogenerated by the @neo4j/graphql library to reduce the schema size and hence server startup time and performance. Note that user-defined deprecated fields are not removed. Some autogenerated fields may still be generated, particularly those that do not affect schema size.