* New rel-picker that can be opened using Shift+O and allows for quickly going to related tables.
8 lines
344 B
Tcl
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"}},
|
|
]
|
|
}) |