viewof resultArqservice = Inputs.button("Call web-service", {
value: aq.table(),
reduce: async () => {
const body = bodyArqservice(
query_join_filter,
{ catalog: { iowa_generation: iowa_generation, oil_price: oil_price } },
{ year_start: 2001, year_end: 2004 }
);
const resp = await clientArqservice(body);
return parseArqservice(resp);
}
})