We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75f2999 commit 4a2df34Copy full SHA for 4a2df34
1 file changed
ted_sws/resources/queries/languages.rq
@@ -2,15 +2,17 @@ PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
2
PREFIX euvoc: <http://publications.europa.eu/ontology/euvoc#>
3
4
5
-select ?code ?conceptURI
+select distinct ?code ?conceptURI
6
where
7
{
8
graph <http://publications.europa.eu/resource/authority/language>
9
10
11
?conceptURI skos:notation ?code .
12
13
- filter (datatype(?code)=euvoc:TED_SCHEMA)
+ filter (datatype(?code) in (euvoc:XML_LNG, euvoc:TED_SCHEMA))
14
+# bind(datatype(?code) as ?datatype)
15
+
16
17
}
18
0 commit comments