Forum Discussion
ChhamaJ
9 years agoKhoros Staff
Hi irach15
You can try to do some thing like this
select * from tags where messages.id = '1'
You will have to provide message id though.
Regards,
Chhama
irach15
9 years agoMaven
yeaaa... I know about that way for a single id..
I need for any id, not a specific one aka universal call...
- irach159 years agoMaven
OK,
I found how.
it needs to be a couple calls.
Some other parameters here are just for testing purpose :-)
<#if page.context.thread??> <#assign apiVersion = "2.0"/> <#assign articleId = page.context.thread.topicMessage.uniqueId?c /> <#assign tagsQuery = "SELECT * FROM tags WHERE messages.id = '" + articleId + "'"/> <#assign tags= rest(apiVersion, "/search?q=" + tagsQuery?url + "&restapi.response_style=view").data.items![] /> <h4>Tags!!!</h4> <#list tags as tag> <ul> <li>Tag: ${tag.text}</li> </ul> </#list> <ul> <li>articleId: ${articleId}</li> <li>apiVersion: ${apiVersion}</li> </ul> </#if>
Related Content
- 9 months ago
- 2 years ago
- 3 years ago
- 4 years ago