Skip to content

Commit

Permalink
Merge pull request #237 from neo4j/changeset-release/main
Browse files Browse the repository at this point in the history
Release new version - changesets
  • Loading branch information
angrykoala authored Nov 15, 2023
2 parents 013b6c2 + d5cf03f commit 67e16d6
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 22 deletions.
21 changes: 0 additions & 21 deletions .changeset/popular-needles-share.md

This file was deleted.

22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# @neo4j/cypher-builder

## 1.7.3

### Patch Changes

- [#236](https://github.com/neo4j/cypher-builder/pull/236) [`34552dc`](https://github.com/neo4j/cypher-builder/commit/34552dc31339f4392afcc578ff82f011a4c21f3f) Thanks [@angrykoala](https://github.com/angrykoala)! - Support for chained `.yield`:

```ts
const customProcedure = new Cypher.Procedure("customProcedure", []).yield("result1").yield(["result2", "aliased"]);
```

is equivalent to:

```ts
const customProcedure = new Cypher.Procedure("customProcedure", []).yield("result1", ["result2", "aliased"]);
```

and results in the Cypher:

```cypher
CALL customProcedure() YIELD result1, result2 AS aliased
```

## 1.7.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@neo4j/cypher-builder",
"version": "1.7.2",
"version": "1.7.3",
"description": "A programmatic API for building Cypher queries for Neo4j",
"exports": "./dist/index.js",
"main": "./dist/index.js",
Expand Down

0 comments on commit 67e16d6

Please sign in to comment.