Query bindings — faceting, selection & results

11 Jul 2026 1 min Swarnil Singhai

Bindings are what make a dashboard interactive — click one widget, the rest respond.

The binding types

  • Selection binding — one widget's selection filters another
  • Results binding — one query's result feeds another query
  • Faceting — auto-filter widgets that share a dataset

A selection binding

q = filter q by 'StageBucket' in {{ cell(stage_widget.selection, 0, "StageBucket").asString() }};

Binding tips

  • Turn off faceting where you don't want auto-filtering
  • Use results bindings for dynamic titles and reference lines
  • Always provide a default so the widget isn't empty on load

Advertisement