query-86893745309e4b42d292857561277ccc

rq turtle/ttl

lo mismo pero filtrando schema:about:

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?P31 ?P31Label WHERE {
  ?item ?property wd:Q1631944 .
  MINUS { ?item schema:about wd:Q1631944 }   
    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("?item"):::projected v2("?property") c4(["bd:serviceParam"]):::iri c1(["wd:Q1631944"]):::iri c6(["#91;AUTO_LANGUAGE#93;,en"]):::literal v1 -->v2--> c1 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v1 --"schema:about"--> c1 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c4 --"wikibase:language"--> c6 end