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
Use a PATCH method similar to ldp.resource.patch, but only allow the modification of items. Using application/sparql-update for the Content-Type.
ldp.resource.patch
application/sparql-update
Example request:
PREFIX as: <https://www.w3.org/ns/activitystreams#> INSERT DATA { <https://mypod.store/alice/followers> as:items <https://mypod.store/bob> . }; DELETE DATA { <https://mypod.store/alice/followers> as:items <https://mypod.store/craig> . }
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Use a PATCH method similar to
ldp.resource.patch
, but only allow the modification of items. Usingapplication/sparql-update
for the Content-Type.Example request:
The text was updated successfully, but these errors were encountered: