query-bedf622d186fa3c2032dbb247fbacd94
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX schema: <http://schema.org/>
select ?article where {
OPTIONAL { ?wartfrarticle schema:about ?article . ?wartfrarticle schema:inLanguage "fr" }
FILTER(bound(?wartfrarticle)) .
filter not exists { ?article wdt:P31|wdt:P279 ?val } .
} LIMIT 1000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?article"):::projected
v2("?val")
v3("?wartfrarticle")
c5(["fr"]):::literal
f0[["not "]]
subgraph f0e0["Exists Clause"]
subgraph unione00[" Union "]
subgraph unione00l[" "]
style unione00l fill:#abf,stroke-dasharray: 3 3;
e0v1 --"wdt:P279"--> e0v2
end
subgraph unione00r[" "]
style unione00r fill:#abf,stroke-dasharray: 3 3;
e0v1 --"wdt:P31"--> e0v2
end
unione00r <== or ==> unione00l
end
e0v1("?article"):::projected
e0v2("?val"):::projected
end
f0--EXISTS--> f0e0
f0 --> v1
f0 --> c1
f0 --> v2
f0 --> c2
subgraph union0[" Union "]
subgraph union0l[" "]
style union0l fill:#abf,stroke-dasharray: 3 3;
v1 --"wdt:P279"--> v2
end
subgraph union0r[" "]
style union0r fill:#abf,stroke-dasharray: 3 3;
v1 --"wdt:P31"--> v2
end
union0r <== or ==> union0l
end
f1[["bound(?wartfrarticle)"]]
f1 --> v3
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v3 -."schema:about".-> v1
v3 --"schema:inLanguage"--> c5
end