SQL Query (Graph) Node
Data/Database/Graph/Query
Executes a read-only SQL query against graph overlay tables via DataFusion. Write any value that comes from outside the flow as a $placeholder and wire it into the pin that appears — never build the SQL string around it.
Ratings
Scores range from 0 to 10. Higher values mean more impact, exposure, or operational weight.
Input Pins
5Graph Connection
StructGraph connection reference
Query
StringSQL query string. Use $placeholders for values that come from the flow (SELECT * FROM person WHERE id = $person_id) — each one adds an input pin to wire the value into. Placeholders stand for values only; table and column names cannot be parameterized.
Params
StructValues for the query's $placeholders, as an object keyed by placeholder name without the $ (e.g. {"customer_id": 42}). Only needed when the query itself comes from a wire — a literal query derives one pin per placeholder instead. Where both supply the same name, the derived pin wins unless it is empty.
Limit
IntegerMaximum number of results
Output Pins
4Done
ExecutionQuery completed
Error
ExecutionQuery failed
Error Message
StringError details
Results
Struct ArrayQuery results as JSON array
Node Info
- Internal name
- graph_sql_query
- Category
- Data/Database/Graph/Query
- Version
- 1