query-c7396a4da37a96d617955188e11e2b4a

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 bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?property ?propertyLabel ?subject ?subjectLabel WHERE {
  ?property wikibase:propertyType wikibase:ExternalId.
  ?property wdt:P1629 ?subject.
  ?subject wdt:P31 wd:Q15633582.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?property"):::projected v2("?subject"):::projected c7(["bd:serviceParam"]):::iri c5(["wd:Q15633582"]):::iri c9(["en"]):::literal c2(["wikibase:ExternalId"]):::iri v1 --"wikibase:propertyType"--> c2 v1 --"wdt:P1629"--> v2 v2 --"wdt:P31"--> c5 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end