Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@neo4j/cypher-builder

Package Overview
Dependencies
Maintainers
7
Versions
69
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@neo4j/cypher-builder - npm Package Versions

1
7

1.7.3

Diff

Changelog

Source

1.7.3

Patch Changes

neo4j-organization
published 1.7.2 •

Changelog

Source

1.7.2

Patch Changes

  • #230 f37cc99 Thanks @angrykoala! - Support for passing undefined to .where:

    const n = new Cypher.Node();
    new Cypher.Match(n).where(undefined).return(n);
    

    This will generate the following Cypher:

    MATCH(n)
    RETURN n
    

    Note that the WHERE clause is omitted if the predicate is undefined

neo4j-organization
published 1.7.1 •

Changelog

Source

1.7.1

Patch Changes

  • #226 84b1534 Thanks @angrykoala! - Support for new Call().innerWith("*") to generate WITH * inside a CALL subquery
neo4j-organization
published 1.7.0 •

Changelog

Source

1.7.0

Minor Changes

Patch Changes

neo4j-organization
published 1.6.0 •

Changelog

Source

1.6.0

Minor Changes

  • #211 2e76445 Thanks @angrykoala! - Add chained clauses in unwind:

    • Unwind.return
    • Unwind.remove
    • Unwind.set
  • fa3d246 Thanks @angrykoala! - Add chained methods in Merge:

    • Merge.remove
    • Merge.with
  • #213 64edcdd Thanks @angrykoala! - Add methods for chained Merge:

    • Match.merge
    • Create.merge
    • Call.merge
    • Foreach.merge
    • Merge.merge
    • Unwind.merge
    • With.merge
  • #206 1ef6244 Thanks @angrykoala! - Add methods for chained match clauses:

    • With.match
    • With.optionalMatch
    • Unwind.match
    • Unwind.optionalMatch
    • Call.match
    • Call.optionalMatch
  • #204 8227ade Thanks @angrykoala! - Add chained clauses in CALL clause:

    • Call.remove
    • Call.set
    • Call.delete
    • Call.detachDelete
  • #212 33ceb71 Thanks @angrykoala! - Add methods for chained Create method:

    • Match.create
    • Call.create
    • Foreach.create
    • Merge.create
    • Unwind.create
    • With.create
  • #200 d582e1a Thanks @angrykoala! - Add support nested match clauses #90:

    • Match.match()
    • Match.optionalMatch()
  • #210 9388048 Thanks @angrykoala! - Add chained subclauses for foreach:

    • Foreach.return
    • Foreach.remove
    • Foreach.set
    • Foreach.delete
    • Foreach.detachDelete
  • #201 70c60b1 Thanks @angrykoala! - Support for chained unwind:

    • Unwind.unwind
    • Match.unwind
    • With.unwind
  • #203 d7d0d2f Thanks @angrykoala! - Add support for chained methods on Create clause:

    • Create.remove
    • Create.delete
    • Create.detachDelete
    • Create.with
    • Create.create
neo4j-organization
published 1.5.2 •

Changelog

Source

1.5.2

Patch Changes

  • #194 0c40f04 Thanks @angrykoala! - Refactors mixins. Due to this, multiple top-level clauses nested in the same clause will explicitly fail, instead of silent failing:

    The following is not supported;

    const match = new Cypher.Match();
    
    match.with();
    match.return();
    

    In favor of the following:

    const match = new Cypher.Match();
    
    match.with().return();
    
  • #195 6b24fdd Thanks @angrykoala! - Support for expressions on Pattern properties:

    const pattern = new Cypher.Pattern(node).withProperties({
        name: Cypher.plus(new Cypher.Literal("The "), new Cypher.Literal("Matrix")),
    });
    

    Results in:

    (this0: {name: "The " + "Matrix"})
    
  • #199 58dfee6 Thanks @angrykoala! - Fix RawCypher types

  • #198 bfb1c97 Thanks @angrykoala! - Deprecates using With.with when nested with already exists in favour of addColumn:

    const withQuery = new Cypher.With(node);
    
    withQuery.with(node2);
    withQuery.with("*");
    

    Instead, it should be:

    const withQuery = new Cypher.With(node);
    
    const nestedWith = withQuery.with(node2);
    nestedWith.addColumn("*");
    
neo4j-organization
published 1.5.1 •

Changelog

Source

1.5.1

Patch Changes

neo4j-organization
published 1.5.0 •

Changelog

Source

1.5.0

Minor Changes

Patch Changes

neo4j-organization
published 1.4.0 •

Changelog

Source

1.4.0

Minor Changes

  • #127 574f5f6 Thanks @angrykoala! - Deprecates Cypher.utils.compileCypher and .getCypher in favor of env.compile:

    Previously:

    new Cypher.RawCypher((env) => {
        const myVar = new Cypher.Variable();
        return myVar.getCypher(env);
    });
    

    Or

    new Cypher.RawCypher((env) => {
        const myVar = new Cypher.Variable();
        return Cypher.utils.compileCypher(myVar, env);
    });
    

    Now:

    new Cypher.RawCypher((env) => {
        const myVar = new Cypher.Variable();
        return env.compile(myVar);
    });
    

Patch Changes

neo4j-organization
published 1.3.0 •

Changelog

Source

1.3.0

Minor Changes

  • #106 7474e62 Thanks @angrykoala! - Add instant temporal functions:

    • time
    • localtime
    • localdatetime
    • datetime
    • date

    As well as the related nested functions:

    • *.realtime
    • *.statement
    • *.transaction
    • *.truncate
    • datetime.fromepoch
    • datetime.fromepochmillis
  • #100 73d9cba Thanks @angrykoala! - Add duration functions:

    • duration
    • duration.between
    • duration.inMonths
    • duration.inDays
    • duration.inSeconds

Patch Changes

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc