query-74fed65df4fb83b9fb31465cdaaa0d43

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 ?url
WHERE 
{

  ?item wdt:P31 wd:Q10876391.
  ?item wdt:P856 ?url .  

  minus { ?article schema:about wd:Q283;
                   schema:isPartOf ?url .
        }

  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; v3("?article") v1("?item"):::projected v2("?url"):::projected c8(["bd:serviceParam"]):::iri c5(["wd:Q283"]):::iri c10(["#91;AUTO_LANGUAGE#93;,en"]):::literal c2(["wd:Q10876391"]):::iri v1 --"wdt:P31"--> c2 v1 --"wdt:P856"--> v2 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v3 --"schema:about"--> c5 v3 --"schema:isPartOf"--> v2 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end