keithkelly
3 years agoLeader
Quickest way to get "unanswered topic count" in a board list?
 Given the scope "board" what's the best practice to grab the # of topics without replies?  another rest() call?  Or is there some sort of magic I can use in the LIQL query to grab this?  See  ${board...
- 3 years agokeithkelly You can try this - liql("Select count(*) from messages where replies.count(*)=0 and depth=0 and board.id='[BOARDID]'").data.countf you appreciate my efforts, please give me a kudo ↓ 
 Accept as solution to help others find it faster.