Skip to content

Commit

Permalink
[Upd] Make generic pattern how to retrieve form template
Browse files Browse the repository at this point in the history
  • Loading branch information
blcham committed Nov 19, 2023
1 parent 8b2e132 commit a6dc9fe
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions src/main/resources/query/findFormTemplates.rq
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>
prefix skos: <http://www.w3.org/2004/02/skos/core#>
prefix ft: <http://onto.fel.cvut.cz/ontologies/form-template/>
prefix dc: <http://purl.org/dc/terms/>
prefix form: <http://onto.fel.cvut.cz/ontologies/form/> .

CONSTRUCT {
<http://onto.fel.cvut.cz/ontologies/form-template/vita-study-main> rdfs:label "Evaluation" .
<http://onto.fel.cvut.cz/ontologies/form-template/vita-study-main> rdfs:comment "Vita Study Evaluation" .
?formTemplate a form:form-template .
?formTemplate rdfs:label ?formTemplateLabel .
?formTemplate rdfs:comment ?formTemplateComment .
} WHERE {
?formTemplate a form:form-template .
?formTemplate rdfs:label ?formTemplateLabel .
?formTemplate rdfs:comment ?formTemplateComment .
}

0 comments on commit a6dc9fe

Please sign in to comment.