26 Accepted questions on Coveo for Sitecore

Knowledge is wealth. And creating that wealth of knowledge and maintaining it is not an east feat.

Everyday there are so many questions asked, reviewed, suggested and answered in sitecore.stackexchange.com. So, I wanted to tap into this knowledge to put it to good use. While SSE gives us an option to see the unanswered questions, I feel there should be a option to see the accepted questions. Or have an option to search only in answered questions. This can sometimes help reduce the noise and see if a question is answered and accepted.

While writing this blog, I asked the same question in sitecorechat.slack.com under #stackexchange channel. And what do you expect? It was answered in few seconds. Shows how useful slack is sometimes right?

Not just answering the question dmytro also showed the path for creating queries in stackexchange
Here is simple query which pulls all the accepted answers under Sitecore site.

http://data.stackexchange.com/sitecore/query/580262/accepted-questions

Query for the above goes like this
SELECT
  Posts.Id AS [Post Link]
FROM
  Posts
WHERE
  PostTypeId = 1
  AND AcceptedAnswerId > 0
ORDER BY
  Id DESC
Results can be downloaded in .csv file format. This can be extremely helpful in maintaining the knowledge base and utilizing same in training.

If you want to play around then you can create new queries using the link below
http://data.stackexchange.com/sitecore/query/new

Well back to my post after a useful deviation, here are the google slides that I created from sitecore.stackexchange.com for accepted questions with Coveo tag. Though we can run our own queries as suggested above it always feels good if the content is curated and made available for easy consumption. And one such effort I tried below.

If you wish to look at the original conversation,  you click on the question and it will link you back to stack exchange site for details.


Comments