Support logical filter operations in plural GQL queries (#449)

* Handle logical operators in where input

* Handle logical filter operators while building the database query

* Refactor code to build where clause for database query
This commit is contained in:
prathamesh0
2023-11-06 11:17:54 +05:30
committed by GitHub
parent 0d7e3ddc8b
commit 546af92638
2 changed files with 232 additions and 113 deletions
+27 -16
View File
@@ -472,23 +472,28 @@ export class GraphWatcher {
return acc;
}
if (['and', 'or'].includes(fieldWithSuffix)) {
assert(Array.isArray(value));
// Parse all the comibations given in the array
acc[fieldWithSuffix] = value.map(w => {
return this._buildFilter(w);
});
return acc;
}
const [field, ...suffix] = fieldWithSuffix.split('_');
if (!acc[field]) {
acc[field] = [];
}
const filter: Filter = {
value,
not: false,
operator: 'equals'
};
let op = suffix.shift();
let operator = suffix.shift();
// If the operator is "" (different from undefined), it means it's a nested filter on a relation field
if (operator === '') {
acc[field].push({
// If op is "" (different from undefined), it means it's a nested filter on a relation field
if (op === '') {
(acc[field] as Filter[]).push({
// Parse nested filter value
value: this._buildFilter(value),
not: false,
@@ -498,21 +503,27 @@ export class GraphWatcher {
return acc;
}
if (operator === 'not') {
const filter: Filter = {
value,
not: false,
operator: 'equals'
};
if (op === 'not') {
filter.not = true;
operator = suffix.shift();
op = suffix.shift();
}
if (operator) {
filter.operator = operator as keyof typeof OPERATOR_MAP;
if (op) {
filter.operator = op as keyof typeof OPERATOR_MAP;
}
// If filter field ends with "nocase", use case insensitive version of the operator
if (suffix[suffix.length - 1] === 'nocase') {
filter.operator = `${operator}_nocase` as keyof typeof OPERATOR_MAP;
filter.operator = `${op}_nocase` as keyof typeof OPERATOR_MAP;
}
acc[field].push(filter);
(acc[field] as Filter[]).push(filter);
return acc;
}, {});