I need a list of all answered questions of all time. The problem: I saw that its possible to filter via search for this, but we have over 1 Mio questions, so its not really possible to go this way.
How can it be done? Is there a plugin, feature or DB request?
If you want to see these topics in the topic list (not search), you can go to /filter?q=status%3Asolved%20 to see all solved topics, and /filter?q=status%3Aunsolved%20 for all unsolved topics. For example, this shows all solved topics on Meta.
Do you mean topics with 0 replies or with no Solutions? If you’re referring to topics with 0 replies, try using the /filter?q=posts-max%3A1 filter to look for topics with 0 replies.
Wir wollen aussortieren. Alle unbeantworteten Themen sollen überprüft und, sofern die Qualität schlecht ist, gelöscht werden. Wenn Themen keine Antworten haben, liegt die Vermutung nahe, dass schon die Frage nicht gut war.
Dann ist die gefilterte Liste, wie @NateDhaliwal sie vorgeschlagen hat, doch eine gute Lösung. Du könntest dir zum Beispiel alle Themen ohne Antwort anzeigen lassen, die nicht das Schlagwort “überprüft” haben. Dann gehst du die Liste durch und löschst Themen, die du nicht behalten willst, und zu den anderen fügst du das Schlagwort hinzu. Dann sind in der gefilterten Liste nur die Themen, die du noch nicht angeschaut hast.
Der Daten-Explorer kann dir auch eine Liste erstellen, aber auch die musst du ja durcharbeiten und dabei deinen Fortschritt im Blick behalten. Da könnte Ausschließen basierend auf einem Schlagwort genauso funktionieren.
Was ist das Problem, das diese Vorschläge nicht lösen?
The filter you want is possible functionally, but the number of topics is the limitation, at least at the UI level. Like Moin and Nate suggested, applying multiple filters/ using data explorer and keeping track of your progress are likely your best solutions in the UI.
If you really need the output of all at once, it likely won’t be in the UI - I think you will need to setup a batch rails script of some kind to do this number of topics - the data explorer limits and pagination of filter won’t work. this is not my area of expertise but I suspect you will need to do say, batch queries of 1000 and it will take some time to run with an output file of results you can analyze in a spreadsheet (you will also probably need to compress the output file).