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
As noted in #143, the following inputs should create named graphs, but don't:
{ "@context": { "@version": 1.1, "@vocab": "http://example.org/", "input": {"@container": "@graph"} }, "input": [{ "@id": "ex:someIdentifier", "@graph": [ {"value": "x"}, {"value": "y"} ] }] }
and
{ "@context": { "@version": 1.1, "@vocab": "http://example.org/", "input": {"@container": "@graph"} }, "input": [{ "@graph": [ {"value": "x"}, {"value": "y"} ] }] }
The text was updated successfully, but these errors were encountered:
I think this is perhaps just a symptom of the special case code we've been discussing in #143 as removing it addresses the problem.
Sorry, something went wrong.
Remove caveat about expanding values of terms which are graph contain…
6507941
…ers where the value is already a graph. Fixes #144. Relates to #143.
717ea94
gkellogg
Successfully merging a pull request may close this issue.
As noted in #143, the following inputs should create named graphs, but don't:
and
The text was updated successfully, but these errors were encountered: