query-9c8d3092e10b9a969ea039bdc5e39803
This one seems to work better: 08:42, 29 February 2016 (UTC)) talk (Voll for it. --Quarry wayI know only 13:03, 1 March 2016 (UTC) Jura--- implements it, it will be there later today. PasleimI had seen it and made the change. If 12:58, 1 March 2016 (UTC) (talk) Sjoerd de BruinI've requested Dutch reports on the talk page. 17:41, 28 February 2016 (UTC) Jura--- can help you. Wikidata:Database_reports/without_claims_by_siteAs an alternative, maybe
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX schema: <http://schema.org/>
SELECT ?item ?wiki WHERE {
?wiki schema:about ?item .
FILTER(SUBSTR(STR(?wiki), 1, 25) = 'https://cs.wikipedia.org/') .
FILTER NOT EXISTS {
?p a wikibase:Property .
?p wikibase:directClaim ?pdirect .
?item ?pdirect ?statement .
}
} LIMIT 10
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?item"):::projected
v1("?p")
v2("?pdirect")
v4("?statement")
v5("?wiki"):::projected
c2(["wikibase:Property"]):::iri
f0[["not "]]
subgraph f0e0["Exists Clause"]
e0v1 --"a"--> e0c2
e0v1 --"wikibase:directClaim"--> e0v2
e0v3 -->e0v2--> e0v4
e0v3("?item"):::projected
e0v1("?p"):::projected
e0v2("?pdirect"):::projected
e0v4("?statement"):::projected
e0c2(["wikibase:Property"]):::iri
end
f0--EXISTS--> f0e0
f0 --> v1
f0 --> c1
f0 --> c2
f0 --> c3
f0 --> v2
f0 --> v3
f0 --> v4
v1 --"a"--> c2
v1 --"wikibase:directClaim"--> v2
v3 -->v2--> v4
f1[["substring(str(?wiki),'1^^xsd:integer','25^^xsd:integer') = 'https://cs.wikipedia.org/'"]]
f1 --> v5
v5 --"schema:about"--> v3