On wikidata, I run the following query to get all universities.
SELECT ?item ?itemLabel WHERE {
?item wdt:P31 wd:Q3918.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
I get:
item itemLabel
wd:Q12432 Michigan Technological University
wd:Q13164 Moscow State University
wd:Q13335 Montesquieu University – Bordeaux IV
wd:Q13338 University of Bordeaux 1
wd:Q13340 Bordeaux Segalen University
wd:Q15142 University of Massachusetts Amherst
wd:Q15143 University of Massachusetts Lowell
wd:Q15144 University of Massachusetts Boston
However, I'd like all the properties of these universities appended to my results, with each property represented by a column (if a university does not have a property, then it will just be NULL in that column for it).
Is this possible, and how do I do this if yes?