Skip to content

Commit

Permalink
Version Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jan 17, 2024
1 parent 6a1bbe7 commit 6c44d42
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 25 deletions.
24 changes: 0 additions & 24 deletions .changeset/wet-worms-drum.md

This file was deleted.

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

## 1.10.1

### Patch Changes

- [#271](https://github.com/neo4j/cypher-builder/pull/271) [`5834c61`](https://github.com/neo4j/cypher-builder/commit/5834c612e1147137555e9684092dd9aadbc5b40d) Thanks [@angrykoala](https://github.com/angrykoala)! - Add `labelOperator` option on build to change the default label `AND` operator:

```js
const node = new Cypher.Node({ labels: ["Movie", "Film"] });
const query = new Cypher.Match(node);

const queryResult = new TestClause(query).build(
undefined,
{},
{
labelOperator: "&",
},
);
```

Will return:

```cypher
MATCH (this:Movie&Film)
```

## 1.10.0

### Minor 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.10.0",
"version": "1.10.1",
"description": "A programmatic API for building Cypher queries for Neo4j",
"exports": "./dist/index.js",
"main": "./dist/index.js",
Expand Down

0 comments on commit 6c44d42

Please sign in to comment.