We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Start quit on an new repo.
content = "<http://ex.org/a> <http://ex.org/b> <http://ex.org/c> ." with TemporaryRepositoryFactory().withGraph("http://example.org/", content) as repo: args = quitApp.parseArgs(['-t', repo.workdir]) objects = quitApp.initialize(args) config = objects['config'] app = create_app(config).test_client()
Create two branches from the same original branch
app.post("/branch", data={"oldbranch": "master", "newbranch": "develop"}) app.post("/branch", data={"oldbranch": "master", "newbranch": "target"})
Insert data into the same new graph on both branches.
update = "INSERT DATA {graph <http://new.org/> {<http://ex.org/x> <http://ex.org/y> <http://ex.org/z> .}}" app.post('/sparql/target', data={"update": update}) update = "INSERT DATA {graph <http://new.org/> {<http://ex.org/z> <http://ex.org/y> <http://ex.org/x> .}}" app.post('/sparql/develop', data={"update": update})
Problem: in one branch there will be new.nt and in the other one new_1.nt. Further there is a problem merging the two graphs from different files.
new.nt
new_1.nt
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Start quit on an new repo.
Create two branches from the same original branch
Insert data into the same new graph on both branches.
Problem: in one branch there will be
new.nt
and in the other onenew_1.nt
.Further there is a problem merging the two graphs from different files.
The text was updated successfully, but these errors were encountered: