Forum Discussion

Shivshankar's avatar
8 years ago

check whether a message is reply or parent post

How can i detect whether a message is a reply or parent message of thread . Is there any api for it ?

Also is there a way we can check whether a post has accepted solution or not ?

  • Shivshankar - Here you go:

     

    SELECT subject, id, conversation FROM messages WHERE conversation.style= 'forum' AND depth=0 AND conversation.solved='true'

    Source

     

    Hope this helps.