update to concept list view
This commit is contained in:
parent
30d26ffa81
commit
12d80e0a3f
1 changed files with 11 additions and 3 deletions
|
@ -7,16 +7,24 @@
|
||||||
<query-select>
|
<query-select>
|
||||||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||||||
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
||||||
PREFIX afn: <http://jena.hpl.hp.com/ARQ/function#>
|
|
||||||
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
|
|
||||||
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
|
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
|
||||||
|
|
||||||
SELECT ?conceptLabel ?concept
|
SELECT ?conceptLabel ?concept
|
||||||
WHERE {
|
WHERE {
|
||||||
?subject ?property ?concept .
|
?subject ?property ?concept .
|
||||||
optional {?concept rdfs:label ?conceptLabel}
|
?concept rdfs:label ?conceptLabel
|
||||||
} ORDER BY ?conceptLabel
|
} ORDER BY ?conceptLabel
|
||||||
</query-select>
|
</query-select>
|
||||||
|
|
||||||
|
<query-construct>
|
||||||
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||||||
|
CONSTRUCT {
|
||||||
|
?subject ?property ?concept .
|
||||||
|
?concept rdfs:label ?conceptLabel
|
||||||
|
} WHERE {
|
||||||
|
?subject ?property ?concept .
|
||||||
|
?concept rdfs:label ?conceptLabel
|
||||||
|
}
|
||||||
|
</query-construct>
|
||||||
<template>propStatement-hasAssociatedConcept.ftl</template>
|
<template>propStatement-hasAssociatedConcept.ftl</template>
|
||||||
</list-view-config>
|
</list-view-config>
|
||||||
|
|
Loading…
Add table
Reference in a new issue