Hi Tiff, in the enapso-graphdb-admin package at https://github.com/innotrade/enapso-graphdb-admin you'll find an downloadToFile method, that supports the export to JSONLD. If you have any further questions, don't hesitate to contact me again. Best Regards, Alex async demoDownloadToFile() {
// download a repository or named graph to file
let lFormat = EnapsoGraphDBClient.FORMAT_JSON_LD;
let resp = await this.graphDBEndpoint.downloadToFile({
format: lFormat.type,
filename:
'ontologies/' +
this.graphDBEndpoint.getRepository() +
lFormat.extension
});
enLogger.info('\nDownload (file):\n' + JSON.stringify(resp, null, 2));
return resp;
}