We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5dd5720 commit 923a2f2Copy full SHA for 923a2f2
templates/web/src/query.ts.twig
@@ -28,7 +28,7 @@ export class Query {
28
`isNotNull("${attribute}")`;
29
30
static between = (attribute: string, start: string|number, end: string|number): string =>
31
- `between("${attribute}", ${Query.parseValues(start)}, ${Query.parseValues(end)}])`;
+ `between("${attribute}", ${Query.parseValues(start)}, ${Query.parseValues(end)})`;
32
33
static startsWith = (attribute: string, value: string): string =>
34
Query.addQuery(attribute, "startsWith", value);
0 commit comments