query-bdbe6986b9757172f8b8336fbc7e149a
Statementless items with Wikispecies sitelink SELECT ?q ?x { ?x schema:about ?q ; schema:isPartOf https://species.wikimedia.org/ . ?q wikibase:statements ?statementcount FILTER ( ?statementcount = 0 ) }
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX schema: <http://schema.org/>
#Statementless items with Wikispecies sitelink
SELECT ?q ?x {
?x schema:about ?q ; schema:isPartOf <https://species.wikimedia.org/> .
?q wikibase:statements ?statementcount
FILTER ( ?statementcount = 0 )
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?q"):::projected
v1("?statementcount")
v2("?x"):::projected
c4([https://species.wikimedia.org/]):::iri
f0[["?statementcount = '0^^xsd:integer'"]]
f0 --> v1
v2 --"schema:about"--> v3
v2 --"schema:isPartOf"--> c4
v3 --"wikibase:statements"--> v1