Requête Wikidata pour symptômes invalides

This commit is contained in:
Mattéo Delabre 2019-11-25 00:18:56 -05:00
parent f0e1c4c815
commit a555df3417
Signed by: matteo
GPG Key ID: AE3FBD02DC583ABB
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
# Obtient tous les types items classés comme symptômes dun autre item qui ne
# sont pas de type signe, symptôme ou maladie — avec les plus rares en premiers
select ?symptomType ?symptomTypeLabel (count(*) as ?usageCount)
where {
?item wdt:P780 ?symptom.
?symptom wdt:P31 ?symptomType.
minus {
?item wdt:P780 ?symptom.
?symptom wdt:P31/wdt:P279* ?knownTypes.
values ?knownTypes { wd:Q12136 wd:Q1441305 wd:Q169872 }
}
service wikibase:label {
bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en".
}
}
group by ?symptomType ?symptomTypeLabel
order by asc(?usageCount)