EMBED.getQueryOutput (field)

Provided an input field, will return a list of all the outputs of the query, in an array of JSON objects.

Parameters

(JSON object) field

Return Value

JSON object array

Example

let data = EMBED.getComponent().schema.data;
let inputValue = data.inputValue

let outputs = EMBED.getQueryOutput(inputValue);
console.log('outputs', outputs);