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

SPARQL/XML results parser does not process Stardog RDF* extension correctly #2495

Closed
abrokenjester opened this issue Sep 14, 2020 · 0 comments · Fixed by #2496
Closed

SPARQL/XML results parser does not process Stardog RDF* extension correctly #2495

abrokenjester opened this issue Sep 14, 2020 · 0 comments · Fixed by #2496
Assignees
Labels
🐞 bug issue is a bug rdf-star / sparql-star RDF-star / SPARQL-star support
Milestone

Comments

@abrokenjester
Copy link
Contributor

Stardog variant:

  <result>
            <binding name='p'>
                <uri>foo:bar</uri>
            </binding>
            <binding name='s'>
                <statement>
                    <s>
                        <uri>foo:bar</uri>
                    </s>
                    <p>
                        <uri>foo:bar</uri>
                    </p>
                    <o>
                        <uri>foo:bar</uri>
                    </o>
                </statement>
            </binding>
            <binding name='o'>
                <uri>foo:bar</uri>
            </binding>
   </result>

RDF4J expected variant:

  <result>
            <binding name='p'>
                <uri>foo:bar</uri>
            </binding>
            <binding name='s'>
                <triple>
                    <subject>
                        <uri>foo:bar</uri>
                    </subject>
                    <predicate>
                        <uri>foo:bar</uri>
                    </predicate>
                    <oobject>
                        <uri>foo:bar</uri>
                    </object>
                </triple>
            </binding>
            <binding name='o'>
                <uri>foo:bar</uri>
            </binding>
   </result>
@abrokenjester abrokenjester added 🐞 bug issue is a bug rdf-star / sparql-star RDF-star / SPARQL-star support labels Sep 14, 2020
@abrokenjester abrokenjester added this to the 3.4.1 milestone Sep 14, 2020
@abrokenjester abrokenjester self-assigned this Sep 14, 2020
@github-actions github-actions bot added this to 📥 Inbox in Project Progress Sep 14, 2020
@abrokenjester abrokenjester moved this from 📥 Inbox to 🚧 In progress in Project Progress Sep 14, 2020
Project Progress automation moved this from 🚧 In progress to 🥳 Done Sep 14, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🐞 bug issue is a bug rdf-star / sparql-star RDF-star / SPARQL-star support
Projects
No open projects
Development

Successfully merging a pull request may close this issue.

1 participant