Skip to content

Commit c2fb191

Browse files
committed
fixes
1 parent 7178b5a commit c2fb191

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

ving/docs/subsystems/ui.md

+6
Original file line numberDiff line numberDiff line change
@@ -474,6 +474,12 @@ You can filter the list of records by passing in values to the query object. For
474474
```js
475475
users.query.id = 'xxx';
476476
```
477+
478+
or filter by a keyword:
479+
480+
```js
481+
users.query.search = 'foo';
482+
```
477483
For more on filtering see the [rest api](rest#filters) documentation.
478484
479485

ving/docs/subsystems/ving-schema.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ An optional boolean that if true will allow searching via the [rest api](rest) f
389389

390390
An optional boolean that if true will do 2 things if added to an `id` prop `type`:
391391

392-
* Allows searching via the [rest api](rest) for exact match filtering against this id using its integer value in addiont to the encrypted string assuming `filterQualifier` is true.
392+
* Allows searching via the [rest api](rest) for exact match filtering against this id using its integer value in addiont to the encrypted string assuming `filterQualifier` or `filterQuery` is true.
393393
* Adds the real id to the `meta.realId` object in the [rest api](rest) response.
394394

395395
##### autoUpdate

0 commit comments

Comments
 (0)