This commit is contained in:
Joel Wetzell
2026-05-17 21:12:04 -05:00
parent 69bc31d3f1
commit 8e6cd58006
82 changed files with 642 additions and 450 deletions
+9 -5
View File
@@ -1,20 +1,24 @@
---
title: Database Query
sidebar:
label: Query
order: 1
label: Query
order: 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](/concepts/modules) to issue query to.
- **query**: the query to execute.
- **module**: the id of the [module](/concepts/modules) to issue query to.
- **query**: the query to execute.
### Example
Issue a `SELECT` statement to a module with id `sqlite`.
```yaml
- type: db.query
params:
module: sqlite
query: "SELECT * from users;"
```
```