We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8eafff commit 230ef77Copy full SHA for 230ef77
src/services/QueryService.ts
@@ -77,7 +77,7 @@ export class QueryService<T> {
77
return this;
78
}
79
appendQuery(value: string) {
80
- if (value.length) {
+ if (value?.length) {
81
this.parameters.where = this.parameters.where?.length ? `${this.parameters.where} AND ${value}` : value;
82
83
0 commit comments