File tree Expand file tree Collapse file tree 3 files changed +10
-132
lines changed Expand file tree Collapse file tree 3 files changed +10
-132
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ " @neo4j/cypher-builder " : major
3+ ---
4+
5+ Remove method ` .children ` from concat clauses:
6+
7+ ``` js
8+ const query = Cypher .utils .concat (clause1, clause2);
9+ query .children ; // No longer supported
10+ ```
Original file line number Diff line number Diff line change @@ -52,11 +52,6 @@ export class CompositeClause extends Clause {
5252 return this . _children . length === 0 ;
5353 }
5454
55- /** @deprecated Children from a composite clause should not be accessed as this will lead to unexpected behaviour */
56- public get children ( ) : Array < CypherASTNode > {
57- return this . _children ;
58- }
59-
6055 /** @internal */
6156 public getCypher ( env : CypherEnvironment , importWithCypher ?: string ) : string {
6257 // NOTE: importWithCypher used to pass down import WITH to UNION clauses
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments