I have a topic that uses a custom generative answers node from a JSON table passed from Power Automate flow but so far there is no response/output at all when running the node there is no error just blank response.
I referenced my formula for custom table from here but maybe I'm missing something:
Solved: Custom Data Source(JsonData) in Generative Answers - Power Platform Community (microsoft.com)
Custom Data:
ForAll(Topic.varEventsTable,
{
Content: Concatenate(body,"-",start),
ContentLocation: Blank(),
Title: subject
}
)
The appended JSON (portion since its has many items) passed from flow:
"[{\"subject\":\"Sample subject\",\"start\":\"2024-02-19T06:00:00.0000000\",\"end\":\"2024-02-19T07:00:00.0000000\",\"startWithTimeZone\":\"2024-02-19T06:00:00+00:00\",\"endWithTimeZone\":\"2024-02-19T07:00:00+00:00\"}]"
then used a parse value node to convert it back to table to be used in custom data.