query-68712491369bd3e46d17deb276c8d6a8

rq turtle/ttl

Stubs from early days III

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?p ?pLabel ?ec
{
    ?p wdt:P591 ?ec.
    MINUS {
      ?p wdt:P31 [].
    }
    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; v2("?ec"):::projected v1("?p"):::projected a1((" ")) c4(["bd:serviceParam"]):::iri c6(["en"]):::literal v1 --"wdt:P591"--> v2 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v1 --"wdt:P31"--> a1 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c4 --"wikibase:language"--> c6 end