query-7ce689806a4e2d09f6577100efdf8557
sailboat class (Q106179098) items
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_class ?sailboat_classLabel ?desc
WHERE
{
?sailboat_class wdt:P31 wd:Q106179098 .
OPTIONAL{
?sailboat_class 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/Lists_sailboat_class
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?desc"):::projected
v2("?sailboat_class"):::projected
c6(["bd:serviceParam"]):::iri
c3(["wd:Q106179098"]):::iri
c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v2 --"wdt:P31"--> c3
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."schema:description".-> v1
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end