@triply/triplydb
    Preparing search index...

    Interface JobDefaultsConfig

    How an import should treat data that does not say where it belongs.

    interface JobDefaultsConfig {
        baseIRI?: string;
        defaultGraphName?: string;
        mergeGraphs?: boolean;
        overwriteAll?: boolean;
    }
    Index
    baseIRI?: string

    Base IRI that relative IRIs in the data are resolved against.

    defaultGraphName?: string

    Graph to put statements in when the file itself names none.

    Needed for triple formats such as N-Triples and Turtle, and ignored for quad formats, which carry their own graph.

    mergeGraphs?: boolean

    Fold everything being imported into one graph.

    overwriteAll?: boolean

    Replace the dataset's existing graphs rather than adding to them.