Scripting plugin for Baserow.
demo.mp4
This plugin is still in early development and the API is not finalised. The following functions are currently implemented but may be subject to change in future versions of the plugin.
Will find a matching database in the current workspace with the given ID and/or name. If only the name is provided and there are more than one matching databases in the workspace, it will fail.
Will find a matching table in the database.
The queryProps
are similar to the ones listed (and work in the way described) in the api-docs of the table's List rows
endpoint.
See: https://api.baserow.io/api/redoc/#tag/Database-table-rows/operation/list_database_table_rows
{
page, // Number
size, // Number
userFieldNames, // Boolean
search, // String
order_by, // String
filters, // Object
include, // String
exclude // String
}
Returns the next page of query results.
Displays the text
on screen.
Displays the table
on screen.
Displays a button with the given text
on screen.
Displays a button on screen, which allows the user to pick a row from the given table
. Returns the selected row object.