query-4579b9dde75f273b55f9b86575270fae
Items missing descriptionThe query below is for items with BugGuideID that are missing label in English:
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?BugGuideID ?item
{
?item wdt:P2464 ?BugGuideID . # BugGuideID
MINUS { ?item rdfs:label ?label filter (lang(?label) = "en"). } .
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?BugGuideID"):::projected
v1("?item"):::projected
v3("?label")
v1 --"wdt:P2464"--> v2
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
f1[["?label = 'en'"]]
f1 --> v3
v1 --"rdfs:label"--> v3
end