Test condition

This commit is contained in:
2023-02-13 21:26:21 +01:00
parent 58255a558d
commit 81e4fe8e95

View File

@@ -21,19 +21,19 @@ import rpoJsonData from '../Data/RpoTree.json';
const query = ref({ const query = ref({
condition: 'and', condition: 'and',
rules: [{ rules: [{
id: 'addresses.street', id: 'addresses.municipality.value',
operator: '=', operator: '=',
value: 'V. Clementisa' value: 'Bratislava'
}, { }, {
condition: 'and', condition: 'or',
rules: [{ rules: [{
id: 'fullNames.value', id: 'statutoryBodies.personName.familyNames',
operator: '(', operator: '=',
value: 'Cobra s.r.o.' value: 'Grochalová'
}, { }, {
id: 'equities.valuePaid', id: 'statutoryBodies.personName.familyNames',
operator: '<=', operator: '=',
value: 80000 value: 'Grochal'
}] }]
}] }]
}) })