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({
condition: 'and',
rules: [{
id: 'addresses.street',
id: 'addresses.municipality.value',
operator: '=',
value: 'V. Clementisa'
value: 'Bratislava'
}, {
condition: 'and',
condition: 'or',
rules: [{
id: 'fullNames.value',
operator: '(',
value: 'Cobra s.r.o.'
id: 'statutoryBodies.personName.familyNames',
operator: '=',
value: 'Grochalová'
}, {
id: 'equities.valuePaid',
operator: '<=',
value: 80000
id: 'statutoryBodies.personName.familyNames',
operator: '=',
value: 'Grochal'
}]
}]
})