Is it possible to make a reusable show query that would achieve the same thing as this?
show metadata: metadata => {
if {
// some function that return a boolean
not is-metadata-with-id(metadata)
} or {
// another arbitrary boolean function
metadata.value.id != tag("xlink")
} {
// skip
return metadata
}
// start actual show rule
}