1
0
Fork 0
mirror of synced 2024-07-02 13:01:09 +12:00

Fixing some issues found with query while testing.

This commit is contained in:
mike12345567 2021-10-13 13:22:13 +01:00
parent b46a945fc4
commit dcb334b564

View file

@ -29,9 +29,6 @@ function formatResponse(resp) {
resp = { response: resp }
}
}
if (!Array.isArray(resp)) {
resp = [resp]
}
return resp
}
@ -49,15 +46,19 @@ async function runAndTransform(
rows = runner.execute()
}
// get all the potential fields in the schema
let keys = rows.flatMap(Object.keys)
// needs to an array for next step
if (!Array.isArray(rows)) {
rows = [rows]
}
// map into JSON if just raw primitive here
if (keys.length === 0) {
if (rows.find(row => typeof row !== "object")) {
rows = rows.map(value => ({ value }))
keys = ["value"]
}
// get all the potential fields in the schema
let keys = rows.flatMap(Object.keys)
return { rows, keys }
}