minor change, renamed a variable

This commit is contained in:
tworrall 2013-06-28 10:15:32 -04:00
parent 04b3bb864f
commit c3bdcb6676
2 changed files with 34 additions and 24 deletions

View file

@ -20,11 +20,11 @@ display:academicDeptsDataGetter
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX vivo: <http://vivoweb.org/ontology/core#>
SELECT DISTINCT ?deptURI (str(?label) as ?name)
SELECT DISTINCT ?theURI (str(?label) as ?name)
WHERE
{
?deptURI rdf:type vivo:AcademicDepartment .
?deptURI rdfs:label ?label
?theURI rdf:type vivo:AcademicDepartment .
?theURI rdfs:label ?label
}
""" .