Skip to content

Commit 82c9694

Browse files
authored
Merge pull request #563 from neo4j/expr-type-cleanup
Small cleanup of Expr type
2 parents 131c372 + 48530fa commit 82c9694

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
"jest-extended": "^6.0.0",
5959
"prettier": "^3.4.1",
6060
"ts-jest": "^29.2.5",
61-
"typedoc": "^0.28.8",
61+
"typedoc": "^0.28.10",
6262
"typescript": "^5.6.3"
6363
}
6464
}

src/types.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,6 @@ export type Operation = BooleanOp | ComparisonOp | MathOp | ConcatOp;
5252
* @see {@link https://neo4j.com/docs/cypher-manual/current/syntax/expressions/ | Cypher Documentation}
5353
*/
5454
export type Expr =
55-
| BooleanOp
56-
| ComparisonOp
5755
| MathOp
5856
| ConcatOp
5957
| Variable
@@ -67,7 +65,6 @@ export type Expr =
6765
| MapProjection // NOTE this cannot be set as a property in a node
6866
| ListExpr
6967
| ListIndex
70-
| Case<ComparisonOp>
7168
| Collect;
7269

7370
/** Represents a predicate expression (i.e returns a boolean). Note that {@link Raw} is only added for compatibility

0 commit comments

Comments
 (0)