Capabilities declaration
This is the official documentation of the @forestadmin/agent
Node.js agent.
As a data source implementer, you won't have to translate every possible query: on most data sources, it is not feasible, as you will be restricted by the API that you will be translating queries for.
On construction, each of your collections will declare per-field capabilities.
Forest Admin will then ensure that only queries using features that you have explicitly enabled are used.
Required features
All data sources need to be able to:
List records
Understand
And
nodes in condition treesUnderstand
Or
nodes in conditions treesUnderstand the
Equal
operator on primary keysUnderstand paging (
skip
,limit
)
Translating the Or
node is a strong constraint, as many backends will not allow it: providing a working implementation may require making multiple queries and recombining the results.
Optional features
All optional features are opt-in and need to be specified when constructing a data source so that Forest Admin understands that they are available.
How to unlock features
The more complete your query translator is, the more features will be unlocked
Unlock filtering, scopes, and segments on the UI
Forest Admin UI implements filtering, scopes, and segments with a "per-field", not on a "per-field-and-operator" granularity.
This means that filtering for a given field is either enabled or not from the UI perspective. Forest Admin admin panel will enable the feature only once enough operators are supported depending on the type of the field.
Collection level capabilities
Count
Enabling this feature allows the pagination widget to display the total number of pages in a collection while browsing records.
Search
If this feature is not enabled in the data source definition, users of your data source can still use the search bar in their admin panel (Forest Admin will default to building condition trees).
Enabling this feature allows you to either:
Gain control over how search works for your data source instead of relying on the default implementation
Allow full-text search on data sources where the condition tree implementation is not strong enough
This is relevant mostly for data sources that target data sources that have native full-text search capabilities (ElasticSearch, ...)
Segments
If this feature is not enabled in the data source definition, users of your data source can still create segments in both their admin panels and agent customization.
Defining segments from your data sources can be relevant in 3 situations:
Implementing segments in the data source can be more efficient than using the default condition tree-based segments (i.e. using complex SQL queries which cannot be expressed as a condition tree)
Your data source is used in multiple Forest Admin projects, and the segment should be shared across all deployments (i.e. segments coming from a third-party SaaS)
Field level capabilities
Write support
Fields may or may not be writable. To make a readonly use the isReadOnly
flag.
Filtering operators
When declaring a field, the filterOperators
set allows telling Forest Admin which operators are supported by any given field.
Operators which are not explicitly enabled in that declaration won't be available.
Sort
Not all fields need to be sortable. Sortable fields should be flagged in the following way.
Last updated