query-cd3e03f0d647f6deed25cc771c99e334

rq turtle/ttl

TODO

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?Tweede_Kamerlid ?Tweede_KamerlidLabel ?sitelink ?article WHERE 
{ 
  ?Tweede_Kamerlid wdt:P39 wd:Q18887908.
  OPTIONAL { ?article schema:about ?Tweede_Kamerlid ;
             schema:isPartOf <https://commons.wikimedia.org/> ; 
             schema:name ?sitelink .
            }
  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; v1("?Tweede_Kamerlid"):::projected v2("?article"):::projected v3("?sitelink"):::projected c8(["bd:serviceParam"]):::iri c5([https://commons.wikimedia.org/]):::iri c10(["#91;AUTO_LANGUAGE#93;,en"]):::literal c2(["wd:Q18887908"]):::iri v1 --"wdt:P39"--> c2 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."schema:about".-> v1 v2 --"schema:isPartOf"--> c5 v2 --"schema:name"--> v3 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end