Håvard M. Ottestad
Håvard M. Ottestad
So it look like this is the expected behaviour. Test on json-ld playground: https://json-ld.org/playground/?startTab=tab-framed&json-ld=%7B%22%40context%22%3A%7B%22%40vocab%22%3A%22http%3A%2F%2Fxmlns.com%2Ffoaf%2F0.1%2F%22%7D%2C%22%40graph%22%3A%5B%7B%22%40type%22%3A%22Person%22%2C%22%40id%22%3A%22http%3A%2F%2Fexample.com%2Fperson1%22%2C%22name%22%3A%22Person1%22%7D%2C%7B%22%40type%22%3A%22Person%22%2C%22%40id%22%3A%22http%3A%2F%2Fexample.com%2Fperson2%22%7D%5D%7D&frame=%7B%22%40context%22%3A%7B%22%40vocab%22%3A%22http%3A%2F%2Fxmlns.com%2Ffoaf%2F0.1%2F%22%7D%2C%22%40type%22%3A%22Person%22%2C%22%40explicit%22%3Atrue%2C%22name%22%3A%7B%7D%7D
@ansell Do you have any plans to support `@requireAll` from json-ld 1.1?
I started looking at adding requireAll. I ran into problems with "@requireAll" getting the default namespace. Eg: ``` { "@context": { "@vocab": "http://xmlns.com/foaf/0.1/" }, "@type": "Person", "@explicit":true, "@requireAll":"true", "name":{} }...
Here is a PR I've made to show progress: https://github.com/jsonld-java/jsonld-java/pull/207
I think I understand what this is about, but could you make a small example for us so we can make a test. That would help us a lot!
This should be a decent first issue for hacktoberfest. Just write a couple of tests and try out the fix from @pulquero . It's a good patch for the time...
Tried to assign @Sanchit-Trivedi
## Before ``` Benchmark Mode Cnt Score Error Units ComplexLargeBenchmark.disabledValidationSail avgt 5 519.778 ± 11.975 ms/op ComplexLargeBenchmark.disabledValidationTransaction avgt 5 489.291 ± 17.303 ms/op ComplexLargeBenchmark.noPreloading avgt 5 974.278 ± 33.026 ms/op...
I've merged develop into this branch and also tried to optimize the code a bit based on the `QueryBenchmark#groupByQuery()` in the MemoryStore. I've also opened a PR to show how...
@JervenBolleman is this still a draft PR or are you happy with how it looks?