How to load existed Ontology graph into DGraph directly

Hi, I’m trying to switch to DGraph from neo4j, I’m wondering how can load my existed Ontology(OWL) data into the DGraph, I found that the documentation declares it supports loading the RDF in “RDF N-Quad”, BUT unable to find the documentation for doing this directly.

Can anybody able to help?

Many thanks

Welcome @maxnilz ,
You can use any suitable library like Apache Jena to convert your ontology, presumably in ttl or similar format, into an NQuad format. Next, you can use the live loader with the -f option to load the converted file.
The format Dgraph supports (N-triples in NQuad Format) is specified here.