Arpita Jaiswal
Arpita Jaiswal
# Description When using SQL type processors such as `sql-query`, `sql-execute`, and `sql-batch` in `fastn`, if the return type is a record, `fastn` does not correctly map the record fields...
Given a record `person` ```ftd -- record person: caption name: body bio: boolean is-adult: true ``` If we try to get the corresponding data of type `person` from the JSON...
The below code is not working: ```ftd -- component foo: private caption name: I am foo ;; `name` passed in header of bar (throws error) -- bar: name: $foo.name --...
There is an issue where data is being generated unnecessarily in `fastn` under specific conditions. This occurs when the data is tied to an if condition that is based on...