dynamo-browse/test.tm
Leon Mika 5d95d44a97
Added the rel-picker which can quickly goto related tables
* New rel-picker that can be opened using Shift+O and allows for quickly going to related tables.
2024-03-03 09:20:28 +11:00

8 lines
344 B
Tcl

ext.related_items("business-addresses", func(item) {
print("Hello")
return [
{"label": "Customer", "query": `city="Austin"`, "args": {"foo": "foo"}},
{"label": "Payment", "query": `officeOpened=false`, "args": {"daa": "Hello"}},
{"label": "Thing", "query": `colors.door^="P"`, "args": {"daa": "Hello"}},
]
})