query-2be18b922d9625b9d90836f4c8c89438
title: Which are the taxa present in Wikidata which have been discussed? (example limited to 1000 results)
SELECT DISTINCT?taxon ?taxon_name WHERE {
?taxon wdt:P225 ?taxon_name. # get the taxon scientific name
# IMPLEMENT STEP TO FILTER TAXA WITH DISCUSSION
}
LIMIT 1000
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
#title: Which are the taxa present in Wikidata which have been discussed? (example limited to 1000 results)
SELECT DISTINCT?taxon ?taxon_name WHERE {
?taxon wdt:P225 ?taxon_name. # get the taxon scientific name
# IMPLEMENT STEP TO FILTER TAXA WITH DISCUSSION
}
LIMIT 1000