query-470a4aed06bcd4438406e2ba11bc67e0
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 ?cited_by ?cited_byLabel ?ADS_bibcode ?DOI WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
?Gowganda_Formation wdt:P921 wd:Q69888216.
?cited_by wdt:P2860 ?Gowganda_Formation .
OPTIONAL { ?cited_by wdt:P819 ?ADS_bibcode. }
OPTIONAL { ?cited_by 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("?cited_by"):::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
v2 --"wdt:P2860"--> v1
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P819".-> v3
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P356".-> v4
end