@innotrade/enapso-graphdb-client
Version:
ENAPSO Graph Database Client for Node.js
43 lines (41 loc) • 1.27 kB
JavaScript
/* eslint-disable prettier/prettier */
/* eslint-disable no-undef */
/* eslint-disable prettier/prettier */
// Innotrade ENAPSO Graph Database Client - Configuration for automated tests
// (C) Copyright 2021-2022 Innotrade GmbH, Herzogenrath, NRW, Germany
// Author: Alexander Schulze and Muhammad Yasir
require('@innotrade/enapso-config');
module.exports = Object.freeze({
repository: 'Test',
accessToken:'data_7643543846_Zs6nw7yi3Z9m',
prefixes: {
PREFIX_OWL: {
prefix: 'owl',
iri: 'http://www.w3.org/2002/07/owl#'
},
PREFIX_RDF: {
prefix: 'rdf',
iri: 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'
},
PREFIX_RDFS: {
prefix: 'rdfs',
iri: 'http://www.w3.org/2000/01/rdf-schema#'
},
PREFIX_XSD: {
prefix: 'xsd',
iri: 'http://www.w3.org/2001/XMLSchema#'
},
PREFIX_FN: {
prefix: 'fn',
iri: 'http://www.w3.org/2005/xpath-functions#'
},
PREFIX_SFN: {
prefix: 'sfn',
iri: 'http://www.w3.org/ns/sparql#'
},
PREFIX_TEST: {
prefix: 'entest',
iri: 'http://ont.enapso.com/test#'
}
}
});