This is the official documentation of the forestadmin-agent-django and forestadmin-agent-flask Python agents.
Forest Admin can connect to any data source, as long as it can be represented as a collection of records that have a common structure.
To achieve that, Forest Admin needs to abstract away data source differences: each connector "speaks" the language of a given API on one side and exposes the Forest Admin Query Interface on the other.
This interface is called the Forest Admin Query Interface, it is not a full-featured ORM: its objective is to be "just enough" to fuel Forest Admin.
Choosing how to query your data
The Forest Admin Query Interface is used to implement all native features of the admin panel, however, when writing custom code (creating new actions, fields, ...), you can either access your data using the Forest Admin Query Interface or using the native driver.
The choice is yours, and you will probably use both depending on the situation.
-
Forest Admin Query Interface
Native Driver
In practice
Querying with the native driver
As the name implies, native drivers have different interfaces for each data source.
from forestadmin.datasource_toolkit.context.collection_context import CollectionCustomizationContextdefhigh_price_segment(context: CollectionCustomizationContext): query =""" SELECT p.id as product_id, count(o.id) as nb FROM Order o INNER JOIN Product p ON o.product = p.id GROUP BY p.id ORDER BY nb DESC'; """with context.collection.get_native_driver()as driver: cursor = driver.execute(query).all() rows = [*cursor]returnConditionTreeLeaf( field="id", operator="in", value=[r[0] for r in rows], )agent.customize_collection("order").add_segment("highPrice", high_price_segment)
from sqlalchemy.sql import textfrom forestadmin.datasource_toolkit.context.collection_context import CollectionCustomizationContextdefhigh_price_segment(context: CollectionCustomizationContext): query =""" SELECT p.id as product_id, count(o.id) as nb FROM Order o INNER JOIN Product p ON o.product = p.id GROUP BY p.id ORDER BY nb DESC'; """with context.collection.get_native_driver()as driver: cursor = driver.execute(query) rows = [*cursor]returnConditionTreeLeaf( field="id", operator="in", value=[r[0] for r in rows], )agent.customize_collection("order").add_segment("highPrice", high_price_segment)
Querying with the Forest Admin Query Interface
Queries can be executed directly, by calling the methods exposed by context.datasource and context.collection.
from sqlalchemy.sql import textfrom forestadmin.datasource_toolkit.context.collection_context import CollectionCustomizationContextfrom forestadmin.datasource_toolkit.interfaces.query.aggregation import Aggregationfrom forestadmin.datasource_toolkit.interfaces.query.filter.unpaginated import Filterfrom forestadmin.datasource_toolkit.interfaces.query.condition_tree.nodes.leaf import ConditionTreeLeafasyncdefmy_segment_function(context: CollectionCustomizationContext): rows =await context.collection.datasource.get_collection("Order").aggregate( context.caller,Filter({}),Aggregation({"field":"id","operation": "Count","groups": [{"field": "category_id"}], }) )returnConditionTreeLeaf( field="id", operator="in", value=[r["id"] for r in rows], )agent.customize_collection("order").add_segment("mySegment", my_segment_function)