query-f113cfb39f2301309a4ef39859ed33aa
dates of battles for ships
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 ?ship ?shipLabel ?conflict ?conflictLabel ?timeLabel WHERE {
?ship wdt:P607 ?conflict;
wdt:P289 wd:Q2240070.
?conflict wdt:P585 ?time.
SERVICE wikibase:label { bd:serviceParam wikibase:language "en-gb,en,mul". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?conflict"):::projected
v1("?ship"):::projected
v3("?time")
c3(["wd:Q2240070"]):::iri
c8(["en-gb,en,mul"]):::literal
c6(["bd:serviceParam"]):::iri
v1 --"wdt:P607"--> v2
v1 --"wdt:P289"--> c3
v2 --"wdt:P585"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end