Custom Search Out
This is an out node that sends search results back to the command bar.
Inputs
This needs msg.payload to be a list of formatted items for searching.
payload
(array) : Array of search items. Each item object should be a JSON object of the formvalue
(string) : Main value used for searching and displaymeta
(object) : miscellaneous meta datasubtext
(string) : subtext to show in list displayicon
(url) : icon to show in list displayother key-value pairs can also be included in this object.
//Sample msg.payload
[
{
"value":"Template 1",
"meta":{
"subtext":"This is template 1"
"icon" : "https://favicon.com/example1.png"
}
},
{
"value":"Template 2",
"meta":{
"subtext":"This is template 2"
"icon" : "https://favicon.com/example2.png"
}
}
]
Outputs
No outputs since this is an out-node.
Last updated
Was this helpful?