Performs a scan operation across all SeahorseDB nodes, returning relevant data from the specified table. It is almost same as normal SQL “SELECT” execution of normal RDBMSs.
Bearer token authentication. Include the token in the Authorization header as 'Bearer
The scan condition. It includes projection, filter, and limit.
SQL WHERE clause to filter the results. If not specified, no filtering will be applied.
"text like '%hello%'"
Number of rows to return in the result set. If set to 0 or not specified, returns all matching rows.
"10"
Columns to include in the result set. Uses SQL projection syntax (e.g. "col1, col2"). If not specified, all columns will be returned.
"id, metadata, text"