@innotrade/enapso-graphdb-client

1.9.3 • Public • Published

ENAPSO

ENAPSO Graph Database Client



Website   •   Documentation   •   Discussion   •   Facebook   •   Twitter   •   LinkedIn

ENAPSO Graph Database client is an easy-to-use tool to perform SPARQL query and update statements against your knowledge graphs or ontologies stored in your graph database. It can be used with any Node.js application.

As of now, ENAPSO Graph Database Client supports the following graph databases:

More graph databases will be supported added in the future.

In addition to authentication (Basic and JWT), the client handles prefixes, handles errors, and transforms SPARQL result bindings into CSV and TSV files as well as JSON result sets that can be easily processed in JavaScript.

The following tools you also might find useful:

  • ENAPSO Graph Database Admin: Enables you to perform administrative and monitoring operations against your graph databases, such as importing and exporting ontologies or knowledge graphs and utilizing the graph database's special features.
  • ENAPSO Command Line Interface for Graph Databases: Enables you to perform numerous scriptable operations on graph databases, e.g. for monitoring and testing, CI/CD pipelines or backup and restore.

🛠️ Installation

npm i @innotrade/enapso-graphdb-client --save

Create the connection with graph database

const { EnapsoGraphDBClient } = require('@innotrade/enapso-graphdb-client');

let graphDBEndpoint = new EnapsoGraphDBClient.Endpoint({
    baseURL: 'http://localhost:7200',
    repository: 'Test',
    triplestore: 'graphdb', // 'graphdb' or 'fuseki' or 'stardog'
    prefixes: [
        {
            prefix: 'entest',
            iri: 'http://ont.enapso.com/test#'
        }
    ],
    transform: 'toCSV'
});

Parameters

Parameter Type Description Values
baseURL(required) String Pass the URL in which graph database is running.
repository(required) String Pass the name of the repository or database of the graph databases with which you want to create a connection.
prefixes(required) Array of objects Pass the prefix and its IRI as an object which will be used in the SPARQL query to perform crud operations.
triplestore(optional) String Pass the name of the graph database with which you want to create a connection by default it creates a connection with Ontotext GraphDB. ('graphdb' , 'stardog' , 'fuseki')
transform(optional) String Pass the type in which you want to show the result of SPARQL query by default it shows the result in JSON format. ('toJSON', 'toCSV' , 'toTSV')

📋 Features

Feature Description Ontotext GraphDB Apache Jena Fuseki Stardog
Login Authenticate user against the graph database
Query To retrieve the information from graph database using SPARQL query
Update To update the triples in the graph database

Authentication

Authenticate against the graph database:
 
graphDBEndpoint.login('admin','root').then((result) => {
        console.log(result);
    })
    .catch((err) => {
        console.log(err);
    });

Query

Query the graph database:

graphDBEndpoint
    .query(
        'select *
where {
    ?class rdf:type owl:Class
    filter(regex(str(?class), "http://ont.enapso.com/test#TestClass", "i")) .
}',
        { transform: 'toJSON' }
    )
    .then((result) => {
        console.log(
            'Read the classes name:\n' + JSON.stringify(result, null, 2)
        );
    })
    .catch((err) => {
        console.log(err);
    });

Update

Update the graph database:

graphDBEndpoint
    .update(
        `insert data {
	   graph <http://ont.enapso.com/test> {
             entest:TestClass rdf:type owl:Class}
           }`
    )
    .then((result) => {
        console.log('inserted a class :\n' + JSON.stringify(result, null, 2));
    })
    .catch((err) => {
        `console.log(err);
    });

📖 Documentation

View the documentation for further usage examples.

🧪 Testing

Tutorial to run the Test suite against the graph database.

😎 Contributing

Contributing is more than just coding. You can support the project in many ways. We will be happy to collaborate with you and we are looking forward to commonly making semantics and knowledge graph technologies available for your projects.

Details of how you can help the project are described in the CONTRIBUTING.md document.

🧑‍🏫 Contributors

 

💬 Bugs and Feature Requests

Do you have a bug report or a feature request?

Please feel free to add a new issue or write to us in discussion: Any questions and suggestions are welcome.

 

🧾 License

This project is licensed under the Apache 2.0 License. See the LICENSE file for more details.

Dependents (7)

Package Sidebar

Install

npm i @innotrade/enapso-graphdb-client

Weekly Downloads

182

Version

1.9.3

License

Apache-2.0

Unpacked Size

82.2 kB

Total Files

16

Last publish

Collaborators

  • asheshgoplani
  • myasir786
  • alexander-schulze