Marcel Otto

Results 21 comments of Marcel Otto

If I remember correctly, RDF.rb has an implementation of the [RDF dataset canonicalization spec](https://json-ld.github.io/rdf-dataset-canonicalization/spec/), which I suppose will be used with this flag. In fact I've started working on an...

It's on my todo list, but to be honest there are much more things with higher priority currently from my perspective. On the serialization format front, for example, JSON-LD 1.1,...

Ok, having a Turtle implementation already, it shouldn't be too hard. The problem is that the Turtle parser is written with leex and yecc, the Erlang-embedded compiler generators and its...

+1 on adding arbitrary options I also have the need for pagination of included relationships, but the arbitrary options would also help me with another issue I have: the relationships...

I've separated the swagger docs into their own YAML files with this helper: ```rb module RswagHelper BASE_API_DOCS_DIR = 'doc/rswag/' class {swagger: '2.0'} }.merge RswagHelper.base_api_docs ``` Of course it would be...

We're experiencing the same problem regularly, but didn't find a pattern when yet. It's also happening in the context of an umbrella project. Unfortunately it's also not public. I'm deleting...

> Also, what's the latest best practice for testing out Windows stuff from a mac? @trogdoro Although I used it lately only for the other way around (testing Unix stuff...

@alexgleason Probably too late for you, but for the sake of completeness: you can now achieve this with the RDF Dataset Canonicalization implementation released today with RDF.ex 1.1: ```elixir graph...

Sorry, there's nothing available for dealing with this in SPARQL.ex yet. I would have tackled this when building a query DSL similarly as Ecto does it (which implements the first...

👍 Would be great, if you could share the solution you end up with.