You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using rdf-store-sparql, which communicates with a remote Jena triple store
When adding new quads to a dataset from two different graph, only the graph of the very first quad is impacted by the import request.
letquads=[];quads.push(rdf.quad(subject,predicate,object,graph1));quads.push(rdf.quad(subject,predicate,object,graph2));letdataset=rdf.dataset(quads);//Or even dataset.addAll(quads)letstream=store.import(dataset.toStream());rdf.waitFor(stream).then(()=>{//doing something })
This lines of codes only adds quads on the first graph and not on the second.
The number of quads doesn't matter, I could have one quad going on the first graph and 20 going on the second, it will only add one quad to the store.
The text was updated successfully, but these errors were encountered:
I'm using rdf-store-sparql, which communicates with a remote Jena triple store
When adding new quads to a dataset from two different graph, only the graph of the very first quad is impacted by the import request.
This lines of codes only adds quads on the first graph and not on the second.
The number of quads doesn't matter, I could have one quad going on the first graph and 20 going on the second, it will only add one quad to the store.
The text was updated successfully, but these errors were encountered: