Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/agent-customization/fields/filter.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Disabling filtering can be made without any code [in the field settings](https:/

Filtering operators can be disabled one by one.

This is used mostly for performance reasons: on big collections, it can be intesting to let users filter only on fields that are indexed in your database to avoid [full-table-scans](https://en.wikipedia.org/wiki/Full_table_scan).
This is used mostly for performance reasons: on big collections, it can be interesting to let users filter only on fields that are indexed in your database to avoid [full-table-scans](https://en.wikipedia.org/wiki/Full_table_scan).

```javascript
collection.replaceFieldOperator('fullName', 'Equal', null);
Expand Down
2 changes: 1 addition & 1 deletion docs/agent-customization/relationships/under-the-hood.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,5 @@ SELECT authors.id, authors.firstName, authors.lastName FROM authors WHERE id IN
{% hint style="warning" %}
Automatic query splitting is a very powerful tool however not all queries are created equal.

In this simple example, it is a straighforward three step process, but the feature can come at the cost of performance on more complex queries.
In this simple example, it is a straightforward three-step process, but the feature can come at the cost of performance on more complex queries.
{% endhint %}
2 changes: 1 addition & 1 deletion docs/agent-customization/search.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ In Forest Admin, pages which show lists of records have a free-text search widge

Two search modes are supported: normal and extended.

- All searchs start by being a "normal search".
- All searches start by being a "normal search".
- If the result the user is looking for is not found, it is possible to trigger an extended search from the user interface.

![Extended search call to action](../assets/search-bar-extended.png)
Expand Down