query-0acfe625be25e517f53d0bcf0531440f

rq turtle/ttl

sailboat class (Q106179098) items with beam (P2261)

Use at

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 ?beam
WHERE 
{
  ?sailboat wdt:P31 wd:Q106179098 .
  ?sailboat wdt:P2261 ?beam .
  ?sailboat schema:description ?desc.
  FILTER ( lang(?desc) = "en" )
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?beam"):::projected v1("?desc"):::projected v2("?sailboat"):::projected c7(["bd:serviceParam"]):::iri c3(["wd:Q106179098"]):::iri c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal f0[["?desc = 'en'"]] f0 --> v1 v2 --"wdt:P31"--> c3 v2 --"wdt:P2261"--> v3 v2 --"schema:description"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end