Changelog
2023
2023-10-30 Updates

Hello everyone, this is the Querier development team.

In this update, significant functional improvements have been made to state referencing, which is at the core of Querier.

The specific changes are as follows:

1. JavaScript execution within {{ }}

Until now, only JavaScript related to state could be written within {{ }}, but with this update, JavaScript can be written directly within {{ }}.

Before {{ dataflow1.data.map(d => d.id) }}

As shown in the example above, it was possible to execute functions related to state, but it was not possible to execute JavaScript directly.

After the update

  • {{ new Date() }}
  • {{ crypto.randomUUID() }}

As shown in the examples above, it is now possible to directly execute functions that are not related to state.

2. Referencing between data flows

Until now, it was not possible to reference data flows from data flows, but with this update, it is now possible to reference between data flows.

Previously, this was resolved by referencing a data flow from a widget and then referencing that widget from a data flow, but this is no longer necessary.