Last active
July 3, 2020 11:39
-
-
Save hammedb197/cfcb6f23dfa01f25df24fb158d16a4aa to your computer and use it in GitHub Desktop.
SparkQL queries
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| get symptoms of COVID-19 | |
| SELECT ?categoryLabel | |
| ?symptom ?symptomLabel | |
| WHERE { | |
| ?category wdt:P31* wd:Q84263196 . | |
| ?category wdt:P780 ?symptom. | |
| SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } | |
| } | |
| #get incubation period and detected date | |
| SELECT ?categoryLabel | |
| ?minIncubation ?maxIncubation ?detected | |
| WHERE { | |
| ?category wdt:P31* wd:Q84263196 . | |
| ?category wdt:P3488 ?minIncubation. | |
| ?category wdt:P3487 ?maxIncubation. | |
| ?category wdt:P575 ?detected. | |
| SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } | |
| } | |
| #Treatment | |
| SELECT ?categoryLabel | |
| ?drug ?drugLabel | |
| WHERE { | |
| ?category wdt:P31* wd:Q84263196 . | |
| ?category wdt:P2176 ?drug. | |
| SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } | |
| } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment