Hi, reading the docs for LiQL, there are examples of filtering on conversation.solved. And indeed, this is referenced by @VikasB in this answer: https://community.khoros.com/t5/Khoros-Communities-Product/How-can-I-track-the-number-of-unanswered-posts-over-time/td-p/553368 What I'm really trying to do is find answers that a user has provided for questions that are still considered unsolved. I can filter by author.id fine, but when I try to combine that with conversation.solved, things break down because apparently conversation.solved will only work with a depth specified, and that depth MUST BE ZERO: "message": "The depth parameter, or the value passed in for the depth parameter, is not valid.",
"data": {
"type": "error_data",
"code": 605,
"developer_message": "only depth of 0 is supported.", Weird. I mean, why shouldn't I be able to filter on conversation.solved independent of depth? Why are the two linked?
... View more