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
-[Turtle](https://www.w3.org/TR/turtle/), [TriG](https://www.w3.org/TR/trig/), [N-Triples](https://www.w3.org/TR/n-triples/), [N-Quads](https://www.w3.org/TR/n-quads/), and [RDF/XML](https://www.w3.org/TR/rdf-syntax-grammar/) RDF serialization formats for both data ingestion and retrieval.
27
-
-[SPARQL Query Results XML Format](https://www.w3.org/TR/rdf-sparql-XMLres/), [SPARQL 1.1 Query Results JSON Format](https://www.w3.org/TR/sparql11-results-json/) and [SPARQL 1.1 Query Results CSV and TSV Formats](https://www.w3.org/TR/sparql11-results-csv-tsv/).
28
-
29
-
It is split into multiple parts:
30
-
31
-
-[The database written as a Rust library](./lib/oxigraph). Its source code is in the `lib` directory.
[](https://docs.rs/oxigraph)
34
-
-[`pyoxigraph` that exposes Oxigraph to the Python world](./python). Its source code is in the `python` directory. [](https://pypi.org/project/pyoxigraph/)
35
-
-[JavaScript bindings for Oxigraph](./js). WebAssembly is used to package Oxigraph into a NodeJS compatible NPM package. Its source code is in the `js` directory.
-[Oxigraph binary](./cli) that provides a standalone command-line tool allowing to manipulate RDF data and spawn a a web server implementing the [SPARQL 1.1 Protocol](https://www.w3.org/TR/sparql11-protocol/) and the [SPARQL 1.1 Graph Store Protocol](https://www.w3.org/TR/sparql11-http-rdf-update/). Its source code is in the `cli` directory.
38
-
Note that it was previously named [Oxigraph server](https://crates.io/crates/oxigraph-server).
A preliminary benchmark [is provided](bench/README.md). There is also [a document describing Oxigraph technical architecture](https://github.com/oxigraph/oxigraph/wiki/Architecture).
56
-
57
-
When cloning this codebase, don't forget to clone the submodules using
58
-
`git clone --recursive https://github.com/oxigraph/oxigraph.git` to clone the repository including submodules or
59
-
`git submodule update --init` to add the submodules to the already cloned repository.
10
+
You can use `cargo` to interact with the codebase or use [Just](https://github.com/casey/just) to run the pre-defined
11
+
commands, also used for continuous integration builds.
Feel free to use [GitHub discussions](https://github.com/oxigraph/oxigraph/discussions) or [the Gitter chat](https://gitter.im/oxigraph/community) to ask questions or talk about Oxigraph.
65
-
[Bug reports](https://github.com/oxigraph/oxigraph/issues) are also very welcome.
66
-
67
-
If you need advanced support or are willing to pay to get some extra features, feel free to reach out to [Tpt](https://github.com/Tpt/).
68
-
21
+
Feel free to use [GitHub discussions](https://github.com/tobixdev/graphfusion/discussions) to ask questions or talk
22
+
about GraphFusion.
23
+
[Bug reports](https://github.com/tobixdev/graphfusion/issues) are also very welcome.
69
24
70
25
## License
71
26
@@ -78,19 +33,15 @@ This project is licensed under either of
78
33
79
34
at your option.
80
35
81
-
### Contribution
82
-
83
-
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Oxigraph by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
84
-
36
+
## Contributing
85
37
86
-
## Sponsors
38
+
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in GraphFusion by you, as
39
+
defined in the Apache-2.0 license, shall be dually licensed as above, without any additional terms or conditions.
87
40
88
-
*[Zazuko](https://zazuko.com/), a knowledge graph consulting company.
89
-
*[RelationLabs](https://relationlabs.ai/) that is building [Relation-Graph](https://github.com/relationlabs/Relation-Graph), a SPARQL database module for the [Substrate blockchain platform](https://substrate.io/) based on Oxigraph.
90
-
*[Field 33](https://field33.com) that was building [an ontology management platform](https://plow.pm/).
91
-
*[Magnus Bakken](https://github.com/magbak) who is building [Data Treehouse](https://www.data-treehouse.com/), a time-series + RDF datalake platform, and [chrontext](https://github.com/magbak/chrontext), a SPARQL query endpoint on top of joint RDF and time series databases.
92
-
*[DeciSym.AI](https://www.decisym.ai/) a cyber security consulting company providing RDF-based software.
93
-
*[ACE IoT Solutions](https://aceiotsolutions.com/), a building IOT platform.
94
-
*[Albin Larsson](https://byabbe.se/) who is building [GovDirectory](https://www.govdirectory.org/), a directory of public agencies based on Wikidata.
41
+
## Acknowledgements
95
42
96
-
And [others](https://github.com/sponsors/Tpt). Many thanks to them!
43
+
The project started as a fork from [Oxigraph](https://github.com/oxigraph/oxigraph), a graph database written in Rust
44
+
with a custom SPARQL query engine.
45
+
While large portions of the codebase have been written from scratch, there is still code from Oxigraph in this
0 commit comments