query-c179e54d90a8591c2182f9c87fa56b2b

rq turtle/ttl

Projects instance of digital museum projectde: Projekte, die ein digitales Museums Projekt sind

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT 
  (?project AS ?Project_Wd_item_link)
  (?projectLabel AS ?Project_name)  
WHERE
{
  ?project wdt:P31 wd:Q106778540.
  SERVICE wikibase:label {
    bd:serviceParam wikibase:language "de,en".
    ?project rdfs:label ?projectLabel.
  }
}
ORDER BY ?projectLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?Project_Wd_item_link") v4("?Project_name") v2("?project"):::projected v1("?projectLabel"):::projected c4(["bd:serviceParam"]):::iri c2(["wd:Q106778540"]):::iri c6(["de,en"]):::literal v2 --"wdt:P31"--> c2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c4 --"wikibase:language"--> c6 v2 --"rdfs:label"--> v1 end bind0[/"?project"/] v2 --o bind0 bind0 --as--o v3 bind1[/"?projectLabel"/] v1 --o bind1 bind1 --as--o v4