【发布时间】:2013-01-08 15:14:13
【问题描述】:
我在耶拿有以下查询。
PREFIX edge: <http://test.com/edge#>
PREFIX property: <http://test.com/property#>
select distinct ?supertype ?subtype where{
?supertype edge:uses{1,3} ?subtype.
?subtype (edge:extends | edge:implements)+ ?supertype. }
在芝麻中效果很好,但在耶拿我得到以下错误:
在第 1 行第 163 列遇到“”{“”{“”。 期待以下之一:
我还尝试将其设置为使用 sparql 1、1.1 和 ARQ 语法,但总是出现相同的错误。虽然相同的查询在 sesame2 中有效。所以我的问题是,Jenas sparql 的语法是否略有不同,还是不受支持? (我假设 http://jena.sourceforge.net/ARQ/property_paths.html 支持它。)
谢谢。
【问题讨论】: