pub fn response_to_batch_auto(response: Value) -> Result<RecordBatch>Expand description
Convert a raw GRAPH.QUERY response to a RecordBatch without a
pre-registered schema.
Column names are taken from the FalkorDB response header row. The Arrow type for each column is inferred by inspecting the first non-null Redis value in that column:
| Redis value | Arrow type |
|---|---|
Int | Int64 |
Double | Float64 |
Boolean | Boolean |
BulkString / SimpleString / other | Utf8 |
| all-null column | Utf8 (fallback) |
This means integer IDs like _gar_id, src, and dst are returned as
Int64 by default — no registration needed.