Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
rizen committed Jan 13, 2025
1 parent 7178b5a commit c2fb191
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions ving/docs/subsystems/ui.md
Original file line number Diff line number Diff line change
Expand Up @@ -474,6 +474,12 @@ You can filter the list of records by passing in values to the query object. For
```js
users.query.id = 'xxx';
```
or filter by a keyword:
```js
users.query.search = 'foo';
```
For more on filtering see the [rest api](rest#filters) documentation.
Expand Down
2 changes: 1 addition & 1 deletion ving/docs/subsystems/ving-schema.md
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ An optional boolean that if true will allow searching via the [rest api](rest) f

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

* 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.
* 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.
* Adds the real id to the `meta.realId` object in the [rest api](rest) response.

##### autoUpdate
Expand Down

0 comments on commit c2fb191

Please sign in to comment.