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

@neo4j/cypher-builder

Package Overview
Dependencies
Maintainers
0
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

13
7

1.19.1

Diff

Changelog

Source

1.19.1

Patch Changes

neo4j-organization
published 1.19.0 •

Changelog

Source

1.19.0

Minor Changes

  • #369 3514bdd Thanks @angrykoala! - Add support for LOAD CSV:

    const row = new Cypher.Variable();
    const loadClause = new Cypher.LoadCSV("https://data.neo4j.com/bands/artists.csv", row).return(row);
    
  • #354 ef49a96 Thanks @angrykoala! - Add support for quantifier patterns:

    const m = new Cypher.Node();
    const m2 = new Cypher.Node();
    
    const quantifiedPath = new Cypher.QuantifiedPath(
        new Cypher.Pattern(m, { labels: ["Movie"], properties: { title: new Cypher.Param("V for Vendetta") } }),
        new Cypher.Pattern({ labels: ["Movie"] })
            .related({ type: "ACTED_IN" })
            .to({ labels: ["Person"] })
            .quantifier({ min: 1, max: 2 }),
        new Cypher.Pattern(m2, {
            labels: ["Movie"],
            properties: { title: new Cypher.Param("Something's Gotta Give") },
        })
    );
    
    const query = new Cypher.Match(quantifiedPath).return(m2);
    

    Cypher

    MATCH (this0:Movie { title: $param0 })
          ((:Movie)-[:ACTED_IN]->(:Person)){1,2}
          (this1:Movie { title: $param1 })
    RETURN this1
    

Patch Changes

neo4j-organization
published 1.18.1 •

Changelog

Source

1.18.1

Patch Changes

  • #366 5fa3f51 Thanks @angrykoala! - Add support for multiple expressions on the simple CASE:

    matchClause.return(
        new Cypher.Case(person.property("eyes"))
            .when(new Cypher.Literal("brown"), new Cypher.Literal("hazel"))
            .then(new Cypher.Literal(2))
    
neo4j-organization
published 1.18.0 •

Changelog

Source

1.18.0

Minor Changes

  • #365 6f20b0a Thanks @angrykoala! - Add support for CALL { …​ } IN CONCURRENT TRANSACTIONS:

    new Cypher.Call(subquery).inTransactions({
        concurrentTransactions: 3,
    });
    
    CALL {
        // Subquery
    } IN 3 CONCURRENT TRANSACTIONS
    

Patch Changes

  • #357 22f87f3 Thanks @angrykoala! - Support for procedures in the tx namespace:

    • tx.getMetaData
    • tx.setMetaData
  • #363 47ee1ef Thanks @angrykoala! - Add functions lower and upper

  • #361 e769f61 Thanks @angrykoala! - Add support for missing fulltext procedures:

    • db.index.fulltext.awaitEventuallyConsistentIndexRefresh
    • db.index.fulltext.listAvailableAnalyzers
  • #361 e769f61 Thanks @angrykoala! - Add support for missing db procedures:

    • db.ping
    • db.propertyKeys
    • db.relationshipTypes
    • db.resampleIndex
    • db.resampleOutdatedIndexes
neo4j-organization
published 1.17.2 •

Changelog

Source

1.17.2

Patch Changes

  • #355 acddbc3 Thanks @angrykoala! - Add the following procedures:

    • db.nameFromElementId
    • db.info
    • db.createLabel
    • db.createProperty
    • db.createRelationshipType
    • db.schema.nodeTypeProperties
    • db.schema.relTypeProperties
    • db.schema.visualization
  • #351 ef73177 Thanks @angrykoala! - Exports type ROUND_PRECISION_MODE

neo4j-organization
published 1.17.1 •

Changelog

Source

1.17.1

Patch Changes

  • #346 65661c3 Thanks @mjfwebb! - Add callProcedure method to With and Match clauses

    const withQuery = new Cypher.With("*").callProcedure(Cypher.db.labels()).yield("label");
    
neo4j-organization
published 1.17.0 •

Changelog

Source

1.17.0

Minor Changes

  • #340 b1b7acf Thanks @angrykoala! - Add vector similarity functions:

    Cypher.vector.similarity.euclidean(param1, param2);
    Cypher.vector.similarity.cosine(param1, param2);
    
  • #342 5bba4b5 Thanks @angrykoala! - Add support for FINISH clauses:

    new Cypher.Finish()
    
    new Cypher.Match(...).finish()
    new Cypher.Create(...).finish()
    new Cypher.Merge(...).finish()
    
neo4j-organization
published 1.16.0 •

Changelog

Source

1.16.0

Minor Changes

  • #333 2593296 Thanks @mjfwebb! - Adds support for genai function genai.vector.encode() and procedure genai.vector.encodeBatch()

  • #328 628ec62 Thanks @mjfwebb! - Adds support for vector index functions db.index.vector.queryNodes() and db.index.vector.queryRelationships()

  • #310 13fd317 Thanks @angrykoala! - Add support for arbitrary variables in Patterns instead of only Node and Relationship:

Patch Changes

  • #310 13fd317 Thanks @angrykoala! - The following methods in Pattern class and chains are deprecated:

    • withoutLabels
    • withoutVariable
    • withProperties
    • getVariables
    • withoutType
    • withDirection
    • withLength

    Instead, these properties should be passed as an object, for example:

    const a = new Cypher.Variable();
    const rel = new Cypher.Variable();
    const b = new Cypher.Variable();
    
    const pattern = new Cypher.Pattern(a, { labels: ["Movie"] }).related(rel, { type: "ACTED_IN" }).to(b);
    
  • #310 98a8b2f Thanks @angrykoala! - Deprecate using Node directly on Match, Create and Merge clauses. Use a Pattern instead

  • #310 7574aee Thanks @angrykoala! - Deprecate setting up labels and types in Node and Relationship. The following examples are now deprecated:

    new Cypher.Node({ labels: ["Movie"] });
    
    new Cypher.Relationship({ type: "ACTED_IN" });
    

    Instead, Nodes and Relationships should be created without parameters. Labels and types should be set in a Pattern:

    const n = new Cypher.Node();
    const r = new Cypher.Relationship();
    
    const pattern = new Cypher.Pattern(n, { labels: ["Movie"] }).related(r, { type: "ACTED_IN" }).to();
    
neo4j-organization
published 1.15.0 •

Changelog

Source

1.15.0

Minor Changes

  • #321 0acf69b Thanks @angrykoala! - Add support for IN TRANSACTIONS in CALL statements using the method inTransactions()
neo4j-organization
published 1.14.0 •

Changelog

Source

1.14.0

Minor Changes

  • #312 3060a56 Thanks @angrykoala! - Add support for normalize function:

    Cypher.normalize(new Cypher.Param("my string"), "NFC");
    
  • #314 dbb6a4a Thanks @angrykoala! - Add isNormalized and isNotNormalized operators:

    const stringLiteral = new Cypher.Literal("the \\u212B char");
    const query = new Cypher.Return([Cypher.isNormalized(stringLiteral, "NFC"), "normalized"]);
    const { cypher } = query.build();
    
    RETURN "the \u212B char" IS NFC NORMALIZED AS normalized
    

Patch Changes

  • #315 e3a7505 Thanks @angrykoala! - Deprecate Cypher.cdc Procedures in favor of Cypher.db.cdc:

    • Cypher.cdc.current in favor of Cypher.db.cdc.current
    • Cypher.cdc.earliest in favor of Cypher.db.cdc.earliest
    • Cypher.cdc.query in favor of Cypher.db.cdc.query

    This new procedures also update the generated Cypher namespace to db.cdc

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