Skip to content

v2.7.2

Compare
Choose a tag to compare
@neo4j-team-graphql neo4j-team-graphql released this 04 Aug 09:05
· 22 commits to main since this release
b2101df

Patch Changes

  • #554 e3278f8 Thanks @angrykoala! - Deprecates Call.importWith in favor of scope variables in Call constructor

  • #554 a9af397 Thanks @angrykoala! - Deprecate apoc functions and procedures. These will no longer be supported in version 3 of Cypher Builder:

    • apoc.date.convertFormat

    • apoc.util.validate

    • apoc.util.validatePredicate

    • apoc.cypher.runFirstColumnMany

    • apoc.cypher.runFirstColumnSingle

      These can still be used by using the Function class directly:

      const convertFormat = new Cypher.Function("apoc.date.convertFormat", [
          new Cypher.Variable(),
          new Cypher.Literal("iso_zoned_date_time"),
          new Cypher.Literal("iso_offset_date_time"),
      ]);