query-709943671e660608f1e4f7c8b7001f81
ItemsUniversity of California, Los Angeles (Q174710)University of California (Q129421)
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT ?p (count(*) as ?cnt)
WHERE {
VALUES(?uc ?uc_name) {
# (wd:Q174710 "ucla")
(wd:Q129421 "ucd")
}
?s ?p ?uc .
filter(regex(str(?p),str(wdt:)))
} group by ?p order by desc(?cnt)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v6("?cnt")
v2("?p"):::projected
v5("?s")
v3("?uc")
v4("?uc_name")
f0[["regex(str(?p),str('wdt:'))"]]
f0 --> v2
bind1[/VALUES ?uc ?uc_name/]
bind1-->v3
bind1-->v4
bind10(["wd:Q129421"])
bind10 --> bind1
bind11(["ucd"])
bind11 --> bind1
v5 -->v2--> v3
bind3[/"count(*)"/]
bind3 --as--o v6