-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Labels
bugSomething isn't workingSomething isn't working
Description
chimera/camel-chimera-graph/src/main/java/com/cefriel/operations/GraphDump.java
Lines 80 to 84 in cfdbd4a
| private static void graphDump(OperationParams params, Exchange exchange) throws IOException { | |
| try(RepositoryConnection con = params.graph().getRepository().getConnection()) { | |
| RepositoryResult<Statement> dump; | |
| dump = con.getStatements(null, null, null); | |
| Model dumpModel = QueryResults.asModel(dump); |
After #20, a graph may have more than one namedGraph, line
| dump = con.getStatements(null, null, null); |
A possible solution would be to iterate over all the namedGraphs for the input graph and dump all the statements from these namedGraphs.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working