query-fbd6c0361db14f0d5fd5c538ba510da7

rq turtle/ttl

URL match pattern the follow sparql will show some that still need doing. match patternsGood to meet someone else interested in

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
select ?x ?xLabel  ?fmt {
  ?x wikibase:propertyType wikibase:ExternalId.
  ?x wdt:P1630 ?fmt; 
  filter not exists {?x wdt:P8966 []}
  FILTER (!regex(?fmt, "web.archive.org","i"))
  FILTER (!regex(?fmt, "toolforge.org","i"))
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],it,en". }
} limit 50

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?fmt"):::projected v2("?x"):::projected a1((" ")) c11(["#91;AUTO_LANGUAGE#93;,it,en"]):::literal c9(["bd:serviceParam"]):::iri c6(["wikibase:ExternalId"]):::iri f0[["not regex(?fmt,'toolforge.org','i')"]] f0 --> v1 f1[["not regex(?fmt,'web.archive.org','i')"]] f1 --> v1 f2[["not "]] subgraph f2e0["Exists Clause"] e0v1 --"wdt:P8966"--> e0a1 e0v1("?x"):::projected e0a1((" ")):::projected end f2--EXISTS--> f2e0 f2 --> v2 f2 --> c4 f2 --> a1 v2 --"wdt:P8966"--> a1 v2 --"wikibase:propertyType"--> c6 v2 --"wdt:P1630"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c9 --"wikibase:language"--> c11 end