query-cc5547549f9538acfb98995cb4673f4f
title: People accociated with a university who have no LCCN SELECT DISTINCT ?academic ?academicLabel ?academicDescription ?academicAltLabel ?viafurl ?orcidurl WHERE {
?academic wdt:P31 wd:Q5 . # academic is a person
{ ?academic wdt:P69 wd:Q1150437 . #educated at Victoria University of Wellington } UNION { ?academic wdt:P108 wd:Q1150437 . # employed by Victoria University of Wellington }
FILTER NOT EXISTS { ?academic wdt:P244 ?lccn . } # filter out those with an lccn OPTIONAL { ?academic wdt:P214 ?viaf . BIND( IRI(CONCAT('https://viaf.org/viaf/', STR(?viaf))) AS ?viafurl ) . } . OPTIONAL { ?academic wdt:P496 ?orcid . BIND( IRI(CONCAT('https://orcid.org/', STR(?orcid))) AS ?orcidurl ) . } . 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: People accociated with a university who have no LCCN
SELECT DISTINCT ?academic ?academicLabel ?academicDescription ?academicAltLabel ?viafurl ?orcidurl WHERE {
?academic wdt:P31 wd:Q5 . # academic is a person
{
?academic wdt:P69 wd:Q1150437 . #educated at Victoria University of Wellington
} UNION {
?academic wdt:P108 wd:Q1150437 . # employed by Victoria University of Wellington
}
FILTER NOT EXISTS { ?academic wdt:P244 ?lccn . } # filter out those with an lccn
OPTIONAL { ?academic wdt:P214 ?viaf . BIND( IRI(CONCAT('https://viaf.org/viaf/', STR(?viaf))) AS ?viafurl ) . } .
OPTIONAL { ?academic wdt:P496 ?orcid . BIND( IRI(CONCAT('https://orcid.org/', STR(?orcid))) AS ?orcidurl ) . } .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}