| ... | @@ -144,7 +144,7 @@ The search may be limited to a certain depth, in this example it's "2", so only |
... | @@ -144,7 +144,7 @@ The search may be limited to a certain depth, in this example it's "2", so only |
|
|
}
|
|
}
|
|
|
```
|
|
```
|
|
|
|
|
|
|
|
It can be combined with other search options, like this for example:
|
|
It can be combined with other search options, like this for example with "or":
|
|
|
|
|
|
|
|
```JSON
|
|
```JSON
|
|
|
{
|
|
{
|
| ... | @@ -154,3 +154,13 @@ It can be combined with other search options, like this for example: |
... | @@ -154,3 +154,13 @@ It can be combined with other search options, like this for example: |
|
|
]
|
|
]
|
|
|
}
|
|
}
|
|
|
```
|
|
```
|
|
|
|
|
|
|
|
with "and":
|
|
|
|
{
|
|
|
|
"conds":
|
|
|
|
{"-and" : [
|
|
|
|
{"me.id": {"-subtree": [1,2]}},
|
|
|
|
{"me.name" : {"-ilike" : "%a%"}}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
} |