Skip to content

Releases: neo4j/graphql

@neo4j/graphql-toolbox@2.1.8

22 Feb 09:55
8e332d2
Compare
Choose a tag to compare

Patch Changes

@neo4j/graphql-ogm@4.4.6

22 Feb 09:55
8e332d2
Compare
Choose a tag to compare

Patch Changes

@neo4j/graphql@4.4.5

16 Jan 08:16
ffdc2cb
Compare
Choose a tag to compare

Patch Changes

  • #4449 2bb8f8b Thanks @mjfwebb! - Fix: allow non-generated mutations on timestamp fields

    Before this patch, it wasn't possible to update a field with a timestamp directive even when the directive specified that only the UPDATE or CREATE operation field should be generated by the database.

  • #4375 d3c6d0e Thanks @angrykoala! - Add support for logical operators on filters for interfaces under the experimental flag:

    interface Show {
        title: String!
    }
    
    type Movie implements Show {
        title: String!
    }
    
    type Series implements Show {
        title: String!
    }
    
    
    query actedInWhere {
        shows(where: { OR: [{ title: "Show 1" }, { title: "Show 2" }] }) {
            title
        }
    }
    
  • #4360 5c42f8d Thanks @angrykoala! - Remove _on filter for interfaces under experimental flag

  • #4409 387e455 Thanks @MacondoExpress! - Add support for typename_IN filters for interfaces under the experimental flag:

    interface Show {
        title: String!
    }
    type Movie implements Show {
        title: String!
    }
    type Series implements Show {
        title: String!
    }
    
    query actedInWhere {
        shows(where: { typename_IN: [Series] }) {
            title
        }
    }
    
  • #4483 4b97531 Thanks @darrellwarde! - Fix authorization variable naming in create operations

  • #4507 66a19c5 Thanks @mjfwebb! - Fixes filtering on nested read operations

@neo4j/graphql-toolbox@2.1.7

16 Jan 08:16
ffdc2cb
Compare
Choose a tag to compare

Patch Changes

@neo4j/graphql-ogm@4.4.5

16 Jan 08:16
ffdc2cb
Compare
Choose a tag to compare

Patch Changes

@neo4j/graphql@4.4.4

04 Dec 09:25
ece281e
Compare
Choose a tag to compare

Patch Changes

@neo4j/graphql-toolbox@2.1.6

04 Dec 09:25
ece281e
Compare
Choose a tag to compare

Patch Changes

@neo4j/graphql-ogm@4.4.4

04 Dec 09:25
ece281e
Compare
Choose a tag to compare

Patch Changes

@neo4j/graphql@4.4.3

21 Nov 09:52
03f85e8
Compare
Choose a tag to compare

Patch Changes

@neo4j/graphql-toolbox@2.1.5

21 Nov 09:52
03f85e8
Compare
Choose a tag to compare

Patch Changes

  • Updated dependencies [3be44c864]:
    • @neo4j/graphql@4.4.3