forked from 0x2620/pandora
The documentation says that you need to write (P & Q) | R
like this:
{
'conditions': [
{
'query': {
'conditions': [P, Q],
'operator': '&'
}
},
R
],
'operator': '|'
}
but actually you need to omit the { 'query': ... } wrapping the
subclause. Including it crashes parseCondition() at:
v = condition['value']
for the obvious reason.
|
||
|---|---|---|
| .. | ||
| management | ||
| migrations | ||
| __init__.py | ||
| admin.py | ||
| data_api.py | ||
| managers.py | ||
| models.py | ||
| tasks.py | ||
| timelines.py | ||
| urls.py | ||
| utils.py | ||
| views.py | ||