0.0.1 • Published 6 years ago

hyper-graph-cli v0.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

hyper-graph-cli

A simple cli tool for making, loading, importing data into, and querying hyper-graph-db instances.

This is very much a work in progress

Installation

npm install hyper-graph-cli -g

Usage

# start up interactive REPL
hypergraph
# then create or load database
--> .create test.db
# then import data
--> .import path/to/triples.ttl
# then query directly with SPARQL
--> SELECT *
... WHERE {
...    ?s ?p ?o
... } LIMIT 10
# Watch the data flow.
--> .exit