We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3cdecc commit 7b5b625Copy full SHA for 7b5b625
.changeset/petite-taxis-burn.md
@@ -0,0 +1,5 @@
1
+---
2
+"@neo4j/cypher-builder": patch
3
4
+
5
+Makes value of `Cypher.Param` writable so it can be overwritten before the query is built
src/references/Param.ts
@@ -24,7 +24,7 @@ import { Variable } from "./Variable";
24
* @group Variables
25
*/
26
export class Param<T = unknown> extends Variable {
27
- public readonly value: T;
+ public value: T;
28
29
constructor(value: T) {
30
super();
0 commit comments