query-79d3eb4c560df840f0e133e8571664e5
monolingual text undetermined language
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?prop ( CONCAT("[[Property:", REPLACE(str(?p), "http://www.wikidata.org/prop/", ""), "]]") as ?propid ) ?propLabel ?id
WHERE {
?prop wikibase:propertyType wikibase:Monolingualtext .
?prop wikibase:claim ?p .
?item ?p ?monolingualstatement .
?prop wikibase:statementProperty ?sp .
?monolingualstatement ?sp ?id .
FILTER( lang(?id)="und" )
FILTER( ?item != wd:Q22282914 )
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
LIMIT 5000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?id"):::projected
v1("?item"):::projected
v5("?monolingualstatement")
v4("?p"):::projected
v3("?prop"):::projected
v7("?propid")
v6("?sp")
c8(["bd:serviceParam"]):::iri
c4(["wikibase:Monolingualtext"]):::iri
c10(["en"]):::literal
f0[["?item != 'wd:Q22282914'"]]
f0 --> v1
f1[["?id = 'und'"]]
f1 --> v2
v3 --"wikibase:propertyType"--> c4
v3 --"wikibase:claim"--> v4
v1 -->v4--> v5
v3 --"wikibase:statementProperty"--> v6
v5 -->v6--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end
bind2[/"concat('#91;#91;Property:',replace(str(?p),'http://www.wikidata.org/prop/',''),'#93;#93;')"/]
v4 --o bind2
bind2 --as--o v7