All Projects → stardog-union → Stardog.js

stardog-union / Stardog.js

Licence: other
Stardog JavaScript Framework for node.js and the browser

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Stardog.js

Workbase
Grakn Workbase (Knowledge IDE)
Stars: ✭ 106 (+85.96%)
Mutual labels:  graph, knowledge-graph
Awesome Knowledge Graph
A curated list of Knowledge Graph related learning materials, databases, tools and other resources
Stars: ✭ 382 (+570.18%)
Mutual labels:  graph, knowledge-graph
Grakn
TypeDB: a strongly-typed database
Stars: ✭ 2,947 (+5070.18%)
Mutual labels:  graph, knowledge-graph
Kglib
Grakn Knowledge Graph Library (ML R&D)
Stars: ✭ 405 (+610.53%)
Mutual labels:  graph, knowledge-graph
Logseq
A privacy-first, open-source platform for knowledge management and collaboration. Desktop app download link: https://github.com/logseq/logseq/releases, roadmap: https://trello.com/b/8txSM12G/roadmap
Stars: ✭ 8,210 (+14303.51%)
Mutual labels:  graph, knowledge-graph
Geistmap
An experimental personal knowledge base with a focus on connections
Stars: ✭ 425 (+645.61%)
Mutual labels:  graph, knowledge-graph
Algorithms
Solved algorithms and data structures problems in many languages
Stars: ✭ 1,021 (+1691.23%)
Mutual labels:  graph
Scaffold Eth
🏗 forkable Ethereum dev stack focused on fast product iterations
Stars: ✭ 1,017 (+1684.21%)
Mutual labels:  graph
G6
♾ A Graph Visualization Framework in JavaScript
Stars: ✭ 8,490 (+14794.74%)
Mutual labels:  graph
Bbw
Semantic annotator: Matching CSV to a Wikibase instance (e.g., Wikidata) via Meta-lookup
Stars: ✭ 42 (-26.32%)
Mutual labels:  knowledge-graph
Rainbarf
it's like Rainmeter, but for CLI!
Stars: ✭ 1,087 (+1807.02%)
Mutual labels:  graph
Geeksforgeeks Dsa 2
This repository contains all the assignments and practice questions solved during the Data Structures and Algorithms course in C++ taught by the Geeks For Geeks team.
Stars: ✭ 53 (-7.02%)
Mutual labels:  graph
Gat2vec
representation learning on attributed graphs
Stars: ✭ 48 (-15.79%)
Mutual labels:  graph
Neo4j Helm
Helm Charts for running Neo4j on Kubernetes
Stars: ✭ 43 (-24.56%)
Mutual labels:  graph
Pure Vue Chart
Simple and lightweight vue chart component without using chart library dependencies
Stars: ✭ 50 (-12.28%)
Mutual labels:  graph
Simpleweightedgraphs.jl
Simple weighted graphs. Requires LightGraphs.jl.
Stars: ✭ 43 (-24.56%)
Mutual labels:  graph
English2cypher
A model to transform english into Cypher queries, based off the CLEVR-graph dataset
Stars: ✭ 54 (-5.26%)
Mutual labels:  graph
Resonance
◾️Resonance | 5kb React animation library
Stars: ✭ 1,011 (+1673.68%)
Mutual labels:  graph
Pyrwr
Python Implementation for Random Walk with Restart (RWR)
Stars: ✭ 48 (-15.79%)
Mutual labels:  graph
Home Assistant Z Wave Graph
Graph your Z-Wave mesh automatically from within Home Assistant.
Stars: ✭ 51 (-10.53%)
Mutual labels:  graph

Stardog.js

Universal Javascript fetch wrapper for communicating with the Stardog HTTP server.

npm

What is it?

This framework wraps all the functionality of a client for the Stardog DBMS, and provides access to a full set of functions such as executing SPARQL queries, administrative tasks on Stardog, and the use of the Reasoning API.

All the implementation uses the HTTP protocol, since most of Stardog functionality is available using this protocol. For more information, go to the Stardog's HTTP Programming documentation.

This is a universal library and as such can be used in both the browser and Node.js.

Installation

To install stardog.js run:

npm install stardog

Usage

Stardog.js conforms to the Universal Module Definition API. To use it in Node.js, simply require or import it as you would any other Node module. To use it in the browser, you can either:

  1. Do the same as you would with Node.js, in which case you'll have to use webpack, parcel, browserify, or some other module bundler,
  2. Use require.js or some other module loader, or
  3. Directly import the built stardog.js file in your HTML (e.g., <script src="./node_modules/stardog/dist/stardog.js"></script>) and then reference the global stardogjs object (e.g., stardogjs.query.execute(/* . . . */)).

Development

To get started, just clone the project. You'll need a local copy of Stardog to be able to run the tests. For more information on starting the Stardog DB service and how it works, go to Stardog's documentation, where you'll find everything you need to get up and running with Stardog.

Go to http://stardog.com, download and install the database and load the data provided in data/ using the script in the repository.

  1. Start the Stardog server
stardog-admin server start
  1. Install stardog.js dependencies:
npm install

Running Tests

In order to contribute changes, all test cases must pass. With the Stardog server running, execute the following command to run all test cases in test/spec:

npm test

Contributing

Fork, clone and develop, write or amend tests, and then open a PR. All PRs go against "master". This project uses prettier on file commit, so don't worry about style as it'll just get rewritten when you commit your changes.

Releasing

If you have publishing rights, BE SURE TO RUN npm version (major|minor|patch) IMMEDIATELY BEFORE PUBLISHING. This will ensure that the build is up-to-date and will also (1) bump the version number in package.json accordingly, (2) create a git tag matching the version number, and (3) automatically update the README and the CHANGELOG using our type declarations and data from the stardog.js GitHub repo. For this process to work correctly, you will need to have generated a GitHub OAuth token and assigned it to the MDCHANGELOG_TOKEN environment variable (because this process uses mdchangelog). In order to ensure that this process is followed, there will be a very annoying alert triggered whenever you publish; if you're all set, just ignore the alert.

After releasing, be sure to push to master, including the tags (so that the release is reflected on GitHub).

Version details

The current version of stardog.js has been tested against version 6.1.2 of Stardog. You are encouraged to use this library if you are using version 5 or greater of Stardog. However, there is very little code that is version specific in stardog.js. It is essentially just a convenience wrapper around fetch. It is very likely that many of the exposed methods will work on older versions of Stardog, but this has not been tested.

If you are using a really old version of Stardog (<= 3.0.0) you should stick with the legacy version of the library which is version 0.3.1.

Discontinued Versions

All versions of stardog.js prior to v1.0.0 have been discontinued and will not receive updates of any kind. If you are using a legacy version of stardog.js you can find the original documentation here. The most recent legacy version is 0.3.1.

Quick Example

const { Connection, query } = require('stardog');

const conn = new Connection({
  username: 'admin',
  password: 'admin',
  endpoint: 'http://localhost:5820',
});

query.execute(conn, 'myDatabaseName', 'select distinct ?s where { ?s ?p ?o }', 'application/sparql-results+json', {
  limit: 10,
  reasoning: true,
  offset: 0,
}).then(({ body }) => {
  console.log(body.results.bindings);
});

API

HTTP

RdfMimeType

One of the following values:

'application/ld+json' | 'text/turtle' | 'application/rdf+xml' | 'application/n-triples' | 'application/n-quads' | 'application/trig'

SparqlMimeType

One of the following values:

'application/sparql-results+json' | 'application/sparql-results+xml'

AcceptMimeType

One of the following values:

RdfMimeType | SparqlMimeType | 'text/plain' | 'text/boolean' | 'application/json' | '*/*'

Body

Object with the following values:

  • status (number)
  • statusText (string)
  • result (object | string | boolean | null)
  • ok (boolean)
  • headers (Headers)
  • body (any)

ConnectionOptions

Object with the following values:

  • endpoint (string)
  • username (string)
  • password (string)
  • meta (ConnectionMeta)

RequestConstructor

One of the following values:

{ new (input: string | Request, init?: RequestInit): Request; }

RequestCreator

One of the following values:

({ uri, Request }: { uri: string; Request: Constructor }) => ReturnType

ConnectionMeta

Object with the following values:

  • createRequest (RequestCreator<RequestConstructor, string | Request>)
  • createHeaders ((defaults: { headers: Headers; }) => Headers)

Connection (Class)

Constructed with:

Connection.config(options, meta)

Takes the following params:

Returns void

Connection.headers()

Returns Headers

Connection.uri(resource)

Takes the following params:

  • resource (string[])

Returns string

server

server.shutdown(conn, params)

Shuts down a Stardog server.

Expects the following parameters:

Returns Promise<HTTP.Body>

server.status(conn, params)

Retrieves general status information about a Stardog server. By default, also includes status information about all databases on that server. If params.databases is false, however, then the information about databases is omitted.

Expects the following parameters:

  • conn (Connection)

  • params ({ databases?: boolean; })

Returns Promise<HTTP.Body>

db

db.create(conn, database, databaseOptions, options, params)

Creates a new database.

Expects the following parameters:

  • conn (Connection)

  • database (string)

  • databaseOptions (object)

  • options ({ files: { filename: string}[] })

  • params (object)

Returns Promise<HTTP.Body>

db.drop(conn, database, params)

Deletes a database.

Expects the following parameters:

  • conn (Connection)

  • database (string)

  • params (object)

Returns Promise<HTTP.Body>

db.get(conn, database, params)

Gets an RDF representation of a database. See: https://www.w3.org/TR/sparql11-http-rdf-update/#http-get

Expects the following parameters:

  • conn (Connection)

  • database (string)

  • params (object)

Returns Promise<HTTP.Body>

db.offline(conn, database, params)

Sets a database offline.

Expects the following parameters:

  • conn (Connection)

  • database (string)

  • params (object)

Returns Promise<HTTP.Body>

db.online(conn, database, params)

Sets a database online.

Expects the following parameters:

  • conn (Connection)

  • database (string)

  • params (object)

Returns Promise<HTTP.Body>

db.optimize(conn, database, params)

Optimizes a database.

Expects the following parameters:

  • conn (Connection)

  • database (string)

  • params (object)

Returns Promise<HTTP.Body>

db.copy(conn, database, destination, params)

Makes a copy of a database.

Expects the following parameters:

  • conn (Connection)

  • database (string)

  • destination (string)

  • params (object)

Returns Promise<HTTP.Body>

db.list(conn, params)

Gets a list of all databases on a Stardog server.

Expects the following parameters:

Returns Promise<HTTP.Body>

db.size(conn, database, params)

Gets number of triples in a database.

Expects the following parameters:

  • conn (Connection)

  • database (string)

  • params (object)

Returns Promise<HTTP.Body>

db.clear(conn, database, transactionId, params)

Clears the contents of a database.

Expects the following parameters:

  • conn (Connection)

  • database (string)

  • transactionId (string)

  • params (object)

Returns Promise<HTTP.Body>

db.add(conn, database, transactionId, content, options, params)

Adds data within a transaction.

Expects the following parameters:

Returns Promise<transaction.TransactionResponse>

db.remove(conn, database, transactionId, content, options, params)

Removes data within a transaction.

Expects the following parameters:

Returns Promise<transaction.TransactionResponse>

db.namespaces(conn, database, params)

Gets a mapping of the namespaces used in a database.

Expects the following parameters:

  • conn (Connection)

  • database (string)

  • params (object)

Returns Promise<HTTP.Body>

db.exportData(conn, database, options, params)

Exports the contents of a database.

Expects the following parameters:

Returns Promise<HTTP.Body>

options

db.options.get(conn, database, params)

Gets set of options on a database.

Expects the following parameters:

  • conn (Connection)

  • database (string)

  • params (object)

Returns Promise<HTTP.Body>

db.options.set(conn, database, databaseOptions, params)

Sets options on a database.

Expects the following parameters:

  • conn (Connection)

  • database (string)

  • databaseOptions (object)

  • params (object)

Returns Promise<HTTP.Body>

graph

db.graph.doGet(conn, database, graphUri, accept, params)

Retrieves the specified named graph

Expects the following parameters:

Returns Promise<HTTP.Body>

db.graph.doPut(conn, database, graphData, graphUri, contentType, params)

Stores the given RDF data in the specified named graph

Expects the following parameters:

  • conn (Connection)

  • database (string)

  • graphData (string)

  • graphUri (string)

  • contentType (RdfMimeType)

  • params (object)

Returns Promise<HTTP.Body>

db.graph.doDelete(conn, database, graphUri, params)

Deletes the specified named graph

Expects the following parameters:

  • conn (Connection)

  • database (string)

  • graphUri (string)

  • params (object)

Returns Promise<HTTP.Body>

db.graph.doPost(conn, database, graphUri, options, params)

Merges the given RDF data into the specified named graph

Expects the following parameters:

  • conn (Connection)

  • database (string)

  • graphUri (string)

  • options ({ contentType: RdfMimeType })

  • params (object)

Returns Promise<HTTP.Body>

transaction

Encodings

One of the following values:

'gzip' | 'compress' | 'deflate' | 'identity' | 'br'

TransactionResponse extends HTTP.Body

Object with the following values:

  • transactionId (string)

TransactionOptions

Object with the following values:

  • contentType (HTTP.RdfMimeType)
  • encoding (Encodings)

db.transaction.begin(conn, database, params)

Begins a new transaction.

Expects the following parameters:

  • conn (Connection)

  • database (string)

  • params (object)

Returns Promise<TransactionResponse>

db.transaction.rollback(conn, database, transactionId, params)

Rolls back a transaction, removing the transaction and undoing all changes

Expects the following parameters:

  • conn (Connection)

  • database (string)

  • transactionId (string)

  • params (object)

Returns Promise<TransactionResponse>

db.transaction.commit(conn, database, transactionId, params)

Commits a transaction to the database, removing the transaction and making its changes permanent.

Expects the following parameters:

  • conn (Connection)

  • database (string)

  • transactionId (string)

  • params (object)

Returns Promise<TransactionResponse>

icv

db.icv.get(conn, database, params)

Gets the set of integrity constraints on a given database.

Expects the following parameters:

  • conn (Connection)

  • database (string)

  • params (object)

Returns Promise<HTTP.Body>

db.icv.add(conn, database, icvAxioms, options, params)

Adds integrity constraints to a given database.

Expects the following parameters:

  • conn (Connection)

  • database (string)

  • icvAxioms (string)

  • options ({ contentType: RdfMimeType })

  • params (object)

Returns Promise<HTTP.Body>

db.icv.remove(conn, database, icvAxioms, options, params)

Removes integrity constraints from a given database.

Expects the following parameters:

  • conn (Connection)

  • database (string)

  • icvAxioms (string)

  • options ({ contentType: RdfMimeType })

  • params (object)

Returns Promise<HTTP.Body>

db.icv.clear(conn, database, params)

Removes all integrity constraints from a given database.

Expects the following parameters:

  • conn (Connection)

  • database (string)

  • params (object)

Returns Promise<HTTP.Body>

db.icv.convert(conn, database, icvAxioms, options, params)

Converts a set of integrity constraints into an equivalent SPARQL query for a given database.

Expects the following parameters:

  • conn (Connection)

  • database (string)

  • icvAxioms (string)

  • options ({ contentType: RdfMimeType })

  • params ({ graphUri: string })

Returns Promise<HTTP.Body>

db.icv.validate(conn, database, constraints, options, params)

Checks constraints to see if they are valid

Expects the following parameters:

  • conn (Connection)

  • database (string)

  • constraints (string)

  • options ({ contentType: RdfMimeType })

  • params ({ graphUri: string })

Returns Promise<HTTP.Body>

db.icv.validateInTx(conn, database, constraints, transactionId, options, params)

Checks constraints to see if they are valid within a transaction

Expects the following parameters:

  • conn (Connection)

  • database (string)

  • constraints (string)

  • transactionId (string)

  • options ({ contentType: RdfMimeType })

  • params ({ graphUri: string })

Returns Promise<HTTP.Body>

db.icv.violations(conn, database, constraints, options, params)

Accepts integrity constraints as RDF and returns the violation explanations, if any, as RDF.

Expects the following parameters:

  • conn (Connection)

  • database (string)

  • constraints (string)

  • options ({ contentType: RdfMimeType })

  • params ({ graphUri: string })

Returns Promise<HTTP.Body>

db.icv.violationsInTx(conn, database, constraints, options, params)

Accepts integrity constraints as RDF and returns the violation explanations, if any, as RDF.

Expects the following parameters:

  • conn (Connection)

  • database (string)

  • constraints (string)

  • options ({ contentType: RdfMimeType })

  • params ({ graphUri: string })

Returns Promise<HTTP.Body>

reasoning

db.reasoning.consistency(conn, database, options, params)

Returns if the database is consistent

Expects the following parameters:

  • conn (Connection)

  • database (string)

  • options ({ namedGraph: string })

  • params (object)

Returns Promise<HTTP.Body>

db.reasoning.explainInference(conn, database, inference, config, params)

Provides an explanation for an inference

Expects the following parameters:

  • conn (Connection)

  • database (string)

  • inference (string)

  • config ({ contentType: string })

  • params (object)

Returns Promise<HTTP.Body>

db.reasoning.explainInconsistency(conn, database, options, params)

Provides the reason why a database is inconsistent, as reported by db.reasoning.consistency

Expects the following parameters:

  • conn (Connection)

  • database (string)

  • options ({ namedGraph: string })

  • params (object)

Returns Promise<HTTP.Body>

db.reasoning.explainInferenceInTransaction(conn, database, transactionId, inference, config, params)

Provides an explanation for an inference within a transaction

Expects the following parameters:

Returns Promise<HTTP.Body>

db.reasoning.explainInconsistencyInTransaction(conn, database, transactionId, options, params)

Provides the reason why a database is inconsistent, as reported by db.reasoning.consistency

Expects the following parameters:

  • conn (Connection)

  • database (string)

  • transactionId (string)

  • options ({ namedGraph: string })

  • params (object)

Returns Promise<HTTP.Body>

db.reasoning.schema(conn, database, params)

Gets the reasoning schema of the database

Expects the following parameters:

  • conn (Connection)

  • database (string)

  • params (object)

Returns Promise<HTTP.Body>

versioning

db.versioning.query(conn, database, query, accept, params)

Executes a SPARQL query over the versioning history

Expects the following parameters:

Returns Promise<HTTP.Body>

db.versioning.commit(conn, database, transactionId, commitMsg, params)

Commits a transaction into versioning

Expects the following parameters:

  • conn (Connection)

  • database (string)

  • transactionId (string)

  • commitMsg (string)

  • params (object)

Returns Promise<HTTP.Body>

db.versioning.createTag(conn, database, revisionId, tagLogMsg, params)

Creates a new tag

Expects the following parameters:

  • conn (Connection)

  • database (string)

  • revisionId (string)

  • tagLogMsg (string)

  • params (object)

Returns Promise<HTTP.Body>

db.versioning.deleteTag(conn, database, revisionId, params)

Deletes a tag

Expects the following parameters:

  • conn (Connection)

  • database (string)

  • revisionId (string)

  • params (object)

Returns Promise<HTTP.Body>

db.versioning.revert(conn, database, fromRevisionId, toRevisionId, logMsg, params)

Reverts to a previous commit

Expects the following parameters:

  • conn (Connection)

  • database (string)

  • fromRevisionId (string)

  • toRevisionId (string)

  • logMsg (string)

  • params (object)

Returns Promise<HTTP.Body>

docs

db.docs.size(conn, database, params)

Retrieves the size of the document store

Expects the following parameters:

  • conn (Connection)

  • database (string)

  • params (object)

Returns Promise<HTTP.Body>

db.docs.clear(conn, database, params)

Clears the document store

Expects the following parameters:

  • conn (Connection)

  • database (string)

  • params (object)

Returns Promise<HTTP.Body>

db.docs.add(conn, database, fileName, fileContents, params)

Adds a document to the document store

Expects the following parameters:

  • conn (Connection)

  • database (string)

  • fileName (string)

  • fileContents (string)

  • params (object)

Returns Promise<HTTP.Body>

db.docs.remove(conn, database, fileName, params)

Removes a document from the document store

Expects the following parameters:

  • conn (Connection)

  • database (string)

  • fileName (string)

  • params (object)

Returns Promise<HTTP.Body>

db.docs.get(conn, database, fileName, params)

Retrieves a document from the document store

Expects the following parameters:

  • conn (Connection)

  • database (string)

  • fileName (string)

  • params (object)

Returns Promise<HTTP.Body>

query

QueryType

One of the following values:

'select' | 'ask' | 'construct' | 'describe' | 'update' | 'paths' | null

PropertyOptions

Object with the following values:

  • uri (string)
  • property (string)

query.property(conn, database, config, params)

Gets the values for a specific property of a URI individual.

Expects the following parameters:

Returns Promise<HTTP.Body>

query.explain(conn, database, query, params)

Gets the query plan generated by Stardog for a given SPARQL query.

Expects the following parameters:

  • conn (Connection)

  • database (string)

  • query (string)

  • params (object)

Returns Promise<HTTP.Body>

query.execute(conn, database, query, accept, params)

Executes a query against a database.

Expects the following parameters:

Returns Promise<HTTP.Body>

query.executeInTransaction(conn, database, transactionId, query, options, params)

Executes a query against a database within a transaction.

Expects the following parameters:

  • conn (Connection)

  • database (string)

  • transactionId (string)

  • query (string)

  • options ({ accept: RdfMimeType })

  • params (object)

Returns Promise<HTTP.Body>

query.list(conn)

Gets a list of actively running queries.

Expects the following parameters:

Returns Promise<HTTP.Body>

query.kill(conn, queryId)

Kills an actively running query.

Expects the following parameters:

Returns Promise<HTTP.Body>

query.get(conn, queryId)

Gets information about an actively running query.

Expects the following parameters:

Returns Promise<HTTP.Body>

StoredQueryOptions

Object with the following values:

  • name (string)
  • database (string)
  • query (string)
  • shared (boolean)

stored

query.stored.create(conn, config, params)

Stores a query in Stardog, either on the system level or for a given database.

Expects the following parameters:

Returns Promise<HTTP.Body>

query.stored.list(conn, params)

Lists all stored queries.

Expects the following parameters:

Returns Promise<HTTP.Body>

query.stored.remove(conn, storedQuery, params)

Removes a given stored query.

Expects the following parameters:

  • conn (Connection)

  • storedQuery (string)

  • params (object)

Returns Promise<HTTP.Body>

graphql

query.graphql.execute(conn, database, query, variables, params)

Executes a GraphQL query

Expects the following parameters:

  • conn (Connection)

  • database (string)

  • query (string)

  • variables (object)

  • params (object)

Returns Promise<HTTP.Body>

query.graphql.listSchemas(conn, database, params)

Retrieves a list of GraphQL schemas in the database

Expects the following parameters:

  • conn (Connection)

  • database (string)

  • params (object)

Returns Promise<HTTP.Body>

query.graphql.addSchema(conn, database, name, schema, params)

Adds a GraphQL schema to the database

Expects the following parameters:

  • conn (Connection)

  • database (string)

  • name (string)

  • schema (object)

  • params (object)

Returns Promise<HTTP.Body>

query.graphql.getSchema(conn, database, name, params)

Retrieves a GraphQL schema from the database

Expects the following parameters:

  • conn (Connection)

  • database (string)

  • name (string)

  • params (object)

Returns Promise<HTTP.Body>

query.graphql.removeSchema(conn, database, name, params)

Removes a GraphQL schemafrom the database

Expects the following parameters:

  • conn (Connection)

  • database (string)

  • name (string)

  • params (object)

Returns Promise<HTTP.Body>

query.graphql.clearSchemas(conn, database, params)

Clears all GraphQL schemas in the database

Expects the following parameters:

  • conn (Connection)

  • database (string)

  • params (object)

Returns Promise<HTTP.Body>

utils

query.utils.queryType(query)

Returns the QueryType (as a string or null) for the given query.

Expects the following parameters:

  • query (string)

Returns QueryType

query.utils.mimeType(query)

Returns the default HTTP Accept MIME type for the given query.

Expects the following parameters:

  • query (string)

Returns HTTP.AcceptMimeType

user

User

Object with the following values:

  • username (string)
  • password (string)
  • superuser (boolean)

Action

One of the following values:

'CREATE' | 'DELETE' | 'READ' | 'WRITE' | 'GRANT' | 'REVOKE' | 'EXECUTE'

ResourceType

One of the following values:

'db' | 'user' | 'role' | 'admin' | 'metadata' | 'named-graph' | 'icv-constraints'

user.list(conn, params)

Gets a list of users.

Expects the following parameters:

Returns Promise<HTTP.Body>

user.get(conn, username, params)

Gets all information for a given user.

Expects the following parameters:

  • conn (Connection)

  • username (string)

  • params (object)

Returns Promise<HTTP.Body>

user.create(conn, user, params)

Creates a new user.

Expects the following parameters:

Returns Promise<HTTP.Body>

user.changePassword(conn, username, password, params)

Changes a user's password.

Expects the following parameters:

  • conn (Connection)

  • username (string)

  • password (string)

  • params (object)

Returns Promise<HTTP.Body>

user.valid(conn, params)

Verifies that a Connection's credentials are valid.

Expects the following parameters:

Returns Promise<HTTP.Body>

user.enabled(conn, username, params)

Verifies that a user is enabled.

Expects the following parameters:

  • conn (Connection)

  • username (string)

  • params (object)

Returns Promise<HTTP.Body>

user.enable(conn, username, enabled, params)

Enables/disables a user.

Expects the following parameters:

  • conn (Connection)

  • username (string)

  • enabled (boolean)

  • params (object)

Returns Promise<HTTP.Body>

user.setRoles(conn, username, roles, params)

Sets roles for a user.

Expects the following parameters:

  • conn (Connection)

  • username (string)

  • roles (string[])

  • params (object)

Returns Promise<HTTP.Body>

user.listRoles(conn, username, params)

Gets a list of roles assigned to a user.

Expects the following parameters:

  • conn (Connection)

  • username (string)

  • params (object)

Returns Promise<HTTP.Body>

user.assignPermission(conn, username, permission, params)

Creates a new permission for a user over a given resource.

Expects the following parameters:

Returns Promise<HTTP.Body>

user.deletePermission(conn, username, permission, params)

Removes a permission for a user over a given resource.

Expects the following parameters:

Returns Promise<HTTP.Body>

user.permissions(conn, username, params)

Gets a list of permissions assigned to user.

Expects the following parameters:

  • conn (Connection)

  • username (string)

  • params (object)

Returns Promise<HTTP.Body>

user.effectivePermissions(conn, username, params)

Gets a list of a user's effective permissions.

Expects the following parameters:

  • conn (Connection)

  • username (string)

  • params (object)

Returns Promise<HTTP.Body>

user.superUser(conn, username, params)

Specifies whether a user is a superuser.

Expects the following parameters:

  • conn (Connection)

  • username (string)

  • params (object)

Returns Promise<HTTP.Body>

user.remove(conn, username, params)

Deletes a user.

Expects the following parameters:

  • conn (Connection)

  • username (string)

  • params (object)

Returns Promise<HTTP.Body>

Permission

Object with the following values:

  • action (Action)
  • resourceType (ResourceType)
  • resources (string[])

role

user.role.create(conn, role, params)

Creates a new role.

Expects the following parameters:

  • conn (Connection)

  • role ({ name: string })

  • params (object)

Returns Promise<HTTP.Body>

user.role.list(conn, params)

Lists all existing roles.

Expects the following parameters:

Returns Promise<HTTP.Body>

user.role.remove(conn, role, params)

Deletes an existing role from the system.

Expects the following parameters:

Returns Promise<HTTP.Body>

user.role.usersWithRole(conn, role, params)

Lists all users that have been assigned a given role.

Expects the following parameters:

Returns Promise<HTTP.Body>

user.role.assignPermission(conn, role, permission, params)

Adds a permission over a given resource to a given role.

Expects the following parameters:

Returns Promise<HTTP.Body>

user.role.deletePermission(conn, role, permission, params)

Removes a permission over a given resource from a given role.

Expects the following parameters:

Returns Promise<HTTP.Body>

user.role.permissions(conn, role, params)

Lists all permissions assigned to a given role.

Expects the following parameters:

Returns Promise<HTTP.Body>

virtualGraphs

SharedOptions

Object with the following values:

  • base (string)
  • mappings.syntax (string)
  • percent.encode (boolean)
  • optimize.import (boolean)
  • query.translation ('DEFAULT' | 'LEGACY')

RdbmsOptions extends SharedOptions

Object with the following values:

  • jdbc.url (string)
  • jdbc.username (string)
  • jdbc.password (string)
  • jdbc.driver (string)
  • parser.sql.quoting ('NATIVE' | 'ANSI')
  • sql.functions (string)
  • sql.schemas (string)
  • default.mappings.include.tables (string)
  • default.mappings.exclude.tables (string)

MongoOptions extends SharedOptions

Object with the following values:

  • mongodb.uri (string)

CsvOptions extends SharedOptions

Object with the following values:

  • csv.separator (string)
  • csv.quote (string)
  • csv.escape (string)
  • csv.header (boolean)
  • csv.skip.empty (boolean)

AllVgOptions

One of the following values:

SharedOptions & RdbmsOptions & MongoOptions & CsvOptions

MappingsRequestOptions

Object with the following values:

  • preferUntransformed (boolean)
  • syntax (string)

virtualGraphs.list(conn)

Retrieve a list of virtual graphs

Expects the following parameters:

Returns Promise<HTTP.Body>

virtualGraphs.add(conn, name, mappings, options)

Add a virtual graph to the system

Expects the following parameters:

  • conn (Connection)

  • name (string)

  • mappings (string)

  • options (T)

Returns Promise<HTTP.Body>

virtualGraphs.update(conn, name, mappings, options)

Update a virtual graph in the system

Expects the following parameters:

  • conn (Connection)

  • name (string)

  • mappings (string)

  • options (T)

Returns Promise<HTTP.Body>

virtualGraphs.remove(conn, name)

Remove a virtual graph from the system

Expects the following parameters:

Returns Promise<HTTP.Body>

virtualGraphs.available(conn, name)

Determine if the named virtual graph is available

Expects the following parameters:

Returns Promise<HTTP.Body>

virtualGraphs.options(conn, name)

Retrieve a virtual graph's options

Expects the following parameters:

Returns Promise<HTTP.Body>

virtualGraphs.mappings(conn, name, requestOptions)

Retrieve a virtual graph's mappings

Expects the following parameters:

Returns Promise<HTTP.Body>

storedFunctions

storedFunctions.add(conn, functions, params)

Adds one or more stored functions to the server

Expects the following parameters:

  • conn (Connection)

  • functions (string)

  • params (object)

Returns Promise<HTTP.Body>

storedFunctions.get(conn, name, params)

Retrieves the specified function definition

Expects the following parameters:

Returns Promise<HTTP.Body>

storedFunctions.remove(conn, name, params)

Removes a stored function from the server

Expects the following parameters:

Returns Promise<HTTP.Body>

storedFunctions.clear(conn, params)

Removes all stored functions from the server

Expects the following parameters:

Returns Promise<HTTP.Body>

storedFunctions.getAll(conn, params)

Retrieves an export of all stored functions on the server

Expects the following parameters:

Returns Promise<HTTP.Body>

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].