query-e55cb9836ad27d0cedf6a4d5bdaaab70

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 ?item ?itemLabel ?article ?sitelink
WHERE 
{
  ?item wdt:P106 wd:Q28389 . 
  ?item wdt:P27 wd:Q953.

  OPTIONAL {?article schema:about ?item ;
  schema:isPartOf <https://en.wikipedia.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; v2("?article"):::projected v1("?item"):::projected v3("?sitelink"):::projected c7([https://en.wikipedia.org/]):::iri c10(["bd:serviceParam"]):::iri c2(["wd:Q28389"]):::iri c4(["wd:Q953"]):::iri c12(["#91;AUTO_LANGUAGE#93;,en"]):::literal v1 --"wdt:P106"--> c2 v1 --"wdt:P27"--> c4 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."schema:about".-> v1 v2 --"schema:isPartOf"--> c7 v2 --"schema:name"--> v3 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c10 --"wikibase:language"--> c12 end