Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Generating shorthand list syntax #185

Open
tpluscode opened this issue Dec 31, 2024 · 0 comments
Open

Generating shorthand list syntax #185

tpluscode opened this issue Dec 31, 2024 · 0 comments

Comments

@tpluscode
Copy link

I have a query generated using the Generator which should contains pattern like this:

?resource2 <http://jena.apache.org/text#query> ( schema:name "L'Abb*" )

The list, however, is produced with labeled blank nodes

?resource2 <http://jena.apache.org/text#query> _:b416 .
_:b416 rdf:first schema:name;
  rdf:rest _:b417.
_:b417 rdf:first "L'Abb*";
  rdf:rest rdf:nil.

Because same patterns are used multiple times in subselects, that fails with Parse error: Blank node label reuse not allowed at this point: _:b416. Is it possible to force shorthand syntax?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant