CacheControl / CacheControl/json-rules-engine
How to handle array of objects?
- Lingua principale
- JavaScript
- Stelle
- 3.1k
- Fork
- 507
- Metriche di merge delle PR
- Nessuna PR unita negli ultimi 30g
Descrizione
Usecase: Is there any equipment with type embroidery and setting speed 250?
Fact:
```
const facts = {
equipmentList: [
{ type: 'embroidery', setting: { speed: 250 } },
{ type: 'sewing', setting: { speed: 150 } },
],
substrate: { color: { hexcode: '#FFFFFF' } },
Size: 'S',
};
```
// the following IS NOT working as expected. no matter what 'setting.speed' I give, I am getting true for the condition
```
{
"all": [
{
"fact": "equipmentList",
"path": "$[?(@.type == 'sewing' && @.setting.speed == 250)]",
"operator": "notEqual",
"value": []
},
]
}
```
Does the package support this kind of a usecase?
Guida per i contributori
Nessuna guida per i contributori indicizzata per questo repository
Valutazione
Questa issue non è ancora stata valutata.