@triply/triplydb
    Preparing search index...

    Interface GraphInfo

    interface GraphInfo {
        fromPipeline?: string;
        graphName: string;
        id: string;
        importedAt?: string;
        importedFrom?: {
            dataset?: string;
            datasetAvatarUrl?: string;
            datasetName?: string;
            graphName: string;
        };
        numberOfStatements: number;
        qualityReport?: QualityReportSummary;
        qualityReportFor?: string;
        uploadedAt?: string;
    }
    Index
    fromPipeline?: string

    Present when a pipeline wrote this graph, naming the pipeline that did.

    graphName: string

    The graph's IRI, which is how it is addressed in queries.

    id: string

    Stable identifier, unchanged when the graph is renamed.

    importedAt?: string

    Set when the graph came from another dataset, rather than from an upload.

    importedFrom?: {
        dataset?: string;
        datasetAvatarUrl?: string;
        datasetName?: string;
        graphName: string;
    }

    Where an imported graph came from, so it can be refreshed against its source.

    numberOfStatements: number

    Statements the graph holds.

    qualityReport?: QualityReportSummary

    Present when this graph holds the results of a SHACL validation.

    qualityReportFor?: string

    For a quality-report graph, the IRI of the graph it reports on.

    uploadedAt?: string

    Set when the graph came from an upload, rather than from another dataset.