How do I bring the value of an external concept into a result view? What I have is:
result-view {
match: AltBrainsData (this)
message {
if (size(this) > 1) {
template ("Here are some AltBrains I found on search term")
}
else-if (size(this) == 0 )
{template ("I couldn't find any AltBrains matching that search term")} }
What I want is to say "on search term #{value(searchterm)}" which is an optional parameter in the initial search function. but the result view doesn't seem to know about the concept.