56 lines
2.2 KiB
XML
56 lines
2.2 KiB
XML
![]() |
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||
|
<!-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
|
||
|
|
||
|
<!-- See guidelines in vitro/doc/list_view_configuration_guidelines.txt -->
|
||
|
|
||
|
<list-view-config>
|
||
|
<query-select>
|
||
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||
|
PREFIX obo: <http://purl.obolibrary.org/obo/>
|
||
|
|
||
|
SELECT DISTINCT ?administratorRole
|
||
|
?grant
|
||
|
?grantLabel
|
||
|
|
||
|
WHERE {
|
||
|
?subject ?property ?administratorRole .
|
||
|
?administratorRole a core:AdministratorRole .
|
||
|
OPTIONAL { ?administratorRole core:relatedBy ?grant .
|
||
|
?grant core:relates ?administratorRole .
|
||
|
?grant rdfs:label ?grantLabel .
|
||
|
}
|
||
|
} ORDER BY ?grantLabel
|
||
|
</query-select>
|
||
|
|
||
|
<query-construct>
|
||
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||
|
PREFIX obo: <http://purl.obolibrary.org/obo/>
|
||
|
|
||
|
CONSTRUCT {
|
||
|
?subject ?property ?administratorRole .
|
||
|
?administratorRole a core:AdministratorRole .
|
||
|
?administratorRole core:relatedBy ?grant .
|
||
|
?grant core:relates ?administratorRole .
|
||
|
?grant rdfs:label ?grantLabel .
|
||
|
} WHERE {
|
||
|
{
|
||
|
?subject ?property ?administratorRole .
|
||
|
?administratorRole a core:AdministratorRole .
|
||
|
} UNION {
|
||
|
?subject ?property ?administratorRole .
|
||
|
?administratorRole a core:AdministratorRole .
|
||
|
?administratorRole core:relatedBy ?grant .
|
||
|
?grant a core:Grant .
|
||
|
?grant core:relates ?administratorRole .
|
||
|
?grant rdfs:label ?grantLabel .
|
||
|
}
|
||
|
}
|
||
|
</query-construct>
|
||
|
|
||
|
<template>propStatement-organizationAdministersGrant.ftl</template>
|
||
|
</list-view-config>
|