query-7498155004015deb2fe8043988f62c22
title: Wikidata properties to identify online accounts missing identifier case sensitivity information SELECT ?prop ?propLabel WHERE { ?prop wdt:P31 wd:Q105388954 . MINUS { ?prop wdt:P1552 wd:Q257869 } MINUS { ?prop wdt:P1552 wd:Q55121297 } SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } }
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#title: Wikidata properties to identify online accounts missing identifier case sensitivity information
SELECT ?prop ?propLabel WHERE {
?prop wdt:P31 wd:Q105388954 .
MINUS { ?prop wdt:P1552 wd:Q257869 }
MINUS { ?prop wdt:P1552 wd:Q55121297 }
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?prop"):::projected
c5(["wd:Q55121297"]):::iri
c2(["wd:Q105388954"]):::iri
c7(["bd:serviceParam"]):::iri
c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c4(["wd:Q257869"]):::iri
v1 --"wdt:P31"--> c2
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v1 --"wdt:P1552"--> c4
end
subgraph minus1["MINUS"]
style minus1 stroke-width:6px,fill:pink,stroke:red;
v1 --"wdt:P1552"--> c5
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end