query-83f564a7b8da64447933f5511f76f2fa
Propertiesinstance of (P31)
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 rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?academicLibraryLabel ?academicLibrary
WHERE
{
?academicLibrary wdt:P31 wd:Q856234 ;
rdfs:label ?academicLibraryLabel.
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
ORDER BY ?academicLibraryLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?academicLibrary"):::projected
v1("?academicLibraryLabel"):::projected
c2(["wd:Q856234"]):::iri
c5(["bd:serviceParam"]):::iri
c7(["en"]):::literal
v2 --"wdt:P31"--> c2
v2 --"rdfs:label"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end