-
Notifications
You must be signed in to change notification settings - Fork 0
/
queryConfig.json
12 lines (12 loc) · 1.48 KB
/
queryConfig.json
1
2
3
4
5
6
7
8
9
10
11
12
{
"Chronostratigraphy": {
"allConcept": "PREFIX skos: <http://www.w3.org/2004/02/skos/core#>\nPREFIX ex: <https://dev-lexic.swissgeol.ch/Chronostratigraphy/>\n\nSELECT ?term ?prefLabel\nWHERE {\n ?term a skos:Concept . \n ?term skos:prefLabel ?prefLabel . \n FILTER(LANG(?prefLabel) = 'en') \n}",
"queryBreadcrumbs": "PREFIX skos: <http://www.w3.org/2004/02/skos/core#>\nPREFIX ex: <https://dev-lexic.swissgeol.ch/Chronostratigraphy/>\n\nSELECT ?narrowerConcept\nWHERE {\n ex:${term} skos:broader+ ?narrowerConcept.\n}",
"queryVocabolo": "PREFIX skos: <http://www.w3.org/2004/02/skos/core#>\nPREFIX ex: <https://dev-lexic.swissgeol.ch/Chronostratigraphy/>\n\nSELECT ?predicate ?object\nWHERE {\n ex:${term} ?predicate ?object .\n}"
},
"TectonicUnits": {
"allConcept": "PREFIX skos: <http://www.w3.org/2004/02/skos/core#>\nPREFIX ex: <https://dev-lexic.swissgeol.ch/TectonicUnits/>\n\nSELECT ?term ?prefLabel\nWHERE {\n ?term a skos:Concept . \n ?term skos:prefLabel ?prefLabel . \n FILTER(LANG(?prefLabel) = 'en') \n}",
"queryBreadcrumbs": "PREFIX skos: <http://www.w3.org/2004/02/skos/core#>\nPREFIX ex: <https://dev-lexic.swissgeol.ch/TectonicUnits/>\n\nSELECT ?narrowerConcept\nWHERE {\n ex:${term} skos:broader+ ?narrowerConcept.\n}",
"queryVocabolo": "PREFIX skos: <http://www.w3.org/2004/02/skos/core#>\nPREFIX ex: <https://dev-lexic.swissgeol.ch/TectonicUnits/>\n\nSELECT ?predicate ?object\nWHERE {\n ex:${term} ?predicate ?object .\n}"
}
}