We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
id does not work with the following:
id
Context:
{ "Person": { "@id": "http://schema.org/Person" } }
Query:
{ ... on Person { id @single # @single does not affect the output actually. } }
Data:
@prefix schema: <http://schema.org/> . @prefix : <http://example.com/>. :test1 a schema:Person. :test2 a schema:Person.
Actual result:
[ { } ]
Expected result:
[ { "id": "http://example.com/test1" }, { "id": "http://example.com/test2" } ]
The code to execute the query is reused from the README and the data is hosted via the latest version of ldf-server.
ldf-server
The text was updated successfully, but these errors were encountered:
No branches or pull requests
id
does not work with the following:Context:
Query:
Data:
Actual result:
Expected result:
The code to execute the query is reused from the README and the data is hosted via the latest version of
ldf-server
.The text was updated successfully, but these errors were encountered: