Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
"jest-extended": "^6.0.0",
"prettier": "^3.4.1",
"ts-jest": "^29.2.5",
"typedoc": "^0.28.8",
"typedoc": "^0.28.10",
"typescript": "^5.6.3"
}
}
3 changes: 0 additions & 3 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,6 @@ export type Operation = BooleanOp | ComparisonOp | MathOp | ConcatOp;
* @see {@link https://neo4j.com/docs/cypher-manual/current/syntax/expressions/ | Cypher Documentation}
*/
export type Expr =
| BooleanOp
| ComparisonOp
| MathOp
| ConcatOp
| Variable
Expand All @@ -67,7 +65,6 @@ export type Expr =
| MapProjection // NOTE this cannot be set as a property in a node
| ListExpr
| ListIndex
| Case<ComparisonOp>
| Collect;

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