query-7d8187d3c62110c402e39c7bb4537fc4
List of all sailboats (Q1075310)sailboat List all instances and sub-classes of
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
SELECT ?sailboat ?sailboatLabel ?desc
WHERE
{
?sailboat wdt:P31/wdt:P279* wd:Q1075310.
?sailboat schema:description ?desc.
FILTER ( lang(?desc) = "en" )
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Query found at
- https://www.wikidata.org/wiki/Wikidata:WikiProject_Sailing/Queries
- https://www.wikidata.org/wiki/Wikidata:WikiProject_Sailing/Queries/List_of_sailboats
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?desc"):::projected
v2("?sailboat"):::projected
a1((" "))
c7(["bd:serviceParam"]):::iri
c4(["wd:Q1075310"]):::iri
c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal
f0[["?desc = 'en'"]]
f0 --> v1
v2 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c4
v2 --"schema:description"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end