query-d02f7e5c3b09ce50f811ad755135202a

rq turtle/ttl

Persons in the History of Parliament, Legacies of Slavery and Kindred Britain SELECT DISTINCT ?item ?itemLabel ?dummy WHERE {?item wdt:P1614 [ ]. ?item wdt:P3023 [ ]. ?item wdt:P3051 ?dummy.

     SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#Persons in the History of Parliament, Legacies of Slavery and Kindred Britain
SELECT DISTINCT ?item ?itemLabel ?dummy
  WHERE {?item wdt:P1614 [ ].
         ?item wdt:P3023 [ ].
         ?item wdt:P3051 ?dummy.

         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("?dummy"):::projected v1("?item"):::projected a1((" ")) a2((" ")) c5(["bd:serviceParam"]):::iri c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal v1 --"wdt:P1614"--> a1 v1 --"wdt:P3023"--> a2 v1 --"wdt:P3051"--> v2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end