Closed ylebre closed 3 years ago
I came across this:
https://github.com/solid/web-access-control-tests/blob/81669fa5e0119ef2c4101a3d57cdaf65872ddd18/test/surface/update.test.ts#L588
DELETE DATA { <#hello> <#linked> <#world> }
I expect that this should be:
DELETE DATA { <#hello> <#linked> <#world> . }
instead (like all the other instances are)?
Turns out that sparql syntax allows the last . to be omitted, so both versions are valid.
I came across this:
https://github.com/solid/web-access-control-tests/blob/81669fa5e0119ef2c4101a3d57cdaf65872ddd18/test/surface/update.test.ts#L588
I expect that this should be:
instead (like all the other instances are)?