query-710dc978374b6315848903ffeb54df6a
osh-emerging-infectious-diseasedata refresh rate: 3600 preferred output format: Table query title: Instance of emerging infectious disease
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
select ?item ?article where {
?item wdt:P31* wd:Q609748.
OPTIONAL {
?article schema:about ?item;
schema:isPartOf <https://en.wikipedia.org/>.
}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?article"):::projected
v1("?item"):::projected
c2(["wd:Q609748"]):::iri
c5([https://en.wikipedia.org/]):::iri
v1 --"wdt:P31"--> c2
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."schema:about".-> v1
v2 --"schema:isPartOf"--> c5
end