Artem

Results 26 comments of Artem

I believe you confused a bit the meaning of `FROM` and `FROM NAMED`. From the spec https://www.w3.org/TR/sparql11-query/#specifyingDataset: > If there is no FROM clause, but there is one or more...

Are you using https://github.com/blazegraph/database/wiki/Bulk_Data_Load utility?

I think that 2.1.5 is RDF 1.0. You need to use https://github.com/blazegraph/database/tree/BLAZEGRAPH_RELEASE_CANDIDATE_2_2_0 branch if you need RDF 1.1 (https://github.com/blazegraph/database/issues/57#issuecomment-285889058). https://oss.sonatype.org/content/repositories/snapshots/com/blazegraph/blazegraph-war/2.2.0-SNAPSHOT/blazegraph-war-2.2.0-20160908.003514-6.war

In my opinion you need to bite the bullet and publish to Maven Central. Especially taking into account recent events with JCenter/Bintray (https://jfrog.com/blog/into-the-sunset-bintray-jcenter-gocenter-and-chartcenter/). So many projects had to migrate to...

As a workaround you can play around with meta edge styling. E.g ``` { 'selector': 'edge.meta', 'style': { 'curve-style': 'unbundled-bezier', 'control-point-distances': '0 0 0', }, }, ``` This way, at...

Are you doing this when you already have "meta" edges in cy.edges() or in the beginning when all nodes are expanded? If later is the case, you need to make...

That would be really nice for re-layouting of compound nodes children.

One important use of named graphs, that is quite impossible to achieve without them, is an ability to transparently query multiple datasets with `FROM` and `FROM NAMED` ``` SELECT ?artwork...

Forgot to add that I'm using jspm 0.17, that could be the reason ...

From deeper look it seems that this module doesn't work nicely with custom transpliers like plugin-typescript.