Files
showbridge-docs/src/content/docs/processors/db/query.md
T
2026-03-26 18:09:38 -05:00

503 B

title, sidebar
title sidebar
Database Query
label order
Query 1

The db.query processor will issue a query to the specified module and return the result to the next processor in line.

  • type: db.query
  • params:
    • module: the id of the module to issue query to.
    • query: the query to execute.

Example

Issue a SELECT statement to a module with id sqlite.

- type: db.query
  params:
    module: sqlite
    query: "SELECT * from users;"