manifest.ttl
来自「Jena推理机」· TTL 代码 · 共 39 行
TTL
39 行
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix mf: <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#> .
@prefix qt: <http://www.w3.org/2001/sw/DataAccess/tests/test-query#> .
<> rdf:type mf:Manifest ;
rdfs:label "Expressions" ;
mf:entries
(
[ mf:name "Expr 1 - FILTER true" ;
mf:action
[ qt:query <q-expr-1.rq> ;
qt:data <data-1.ttl> ] ;
mf:result <result-expr-1.ttl>
]
[ mf:name "Expr 2 - FILTER false" ;
mf:action
[ qt:query <q-expr-2.rq> ;
qt:data <data-1.ttl> ] ;
mf:result <result-expr-2.ttl>
]
[ mf:name "Expr 3 - Triple pattern and FILTER true" ;
mf:action
[ qt:query <q-expr-3.rq> ;
qt:data <data-1.ttl> ] ;
mf:result <result-expr-3.srx>
]
[ mf:name "Expr 4 - Triple pattern and FILTER false" ;
mf:action
[ qt:query <q-expr-4.rq> ;
qt:data <data-1.ttl> ] ;
mf:result <result-expr-4.srx>
]
# Strings and non-strings.
).
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?