query-996436d4b93298bd80dd551784d56350
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?Gowganda_Formation ?Gowganda_FormationLabel ?cites_work ?cites_workLabel ?ADS_bibcode ?DOI WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
?Gowganda_Formation wdt:P921 wd:Q69888216.
OPTIONAL { ?Gowganda_Formation wdt:P2860 ?cites_work. }
OPTIONAL { ?Gowganda_Formation wdt:P819 ?ADS_bibcode. }
OPTIONAL { ?Gowganda_Formation wdt:P356 ?DOI. }
} LIMIT 100
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?ADS_bibcode"):::projected
v4("?DOI"):::projected
v1("?Gowganda_Formation"):::projected
v2("?cites_work"):::projected
c6(["wd:Q69888216"]):::iri
c2(["bd:serviceParam"]):::iri
c4(["#91;AUTO_LANGUAGE#93;,en"]):::literal
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c2 --"wikibase:language"--> c4
end
v1 --"wdt:P921"--> c6
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P2860".-> v2
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P819".-> v3
end
subgraph optional2["(optional)"]
style optional2 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P356".-> v4
end