Comunica
    Preparing search index...

    Interface IDataset

    Abstraction to allow grouping of metadata by dataset, in case multiple datasets expose their metadata through the same source URI and thus the same stream.

    interface IDataset {
        getCardinality: (
            operation: Operation,
        ) => Promise<QueryResultCardinality>;
        source: string;
        uri: string;
    }
    Index

    Properties

    getCardinality: (operation: Operation) => Promise<QueryResultCardinality>

    Calculate the cardinality of the given operation within this dataset.

    Type declaration

    source: string

    The URI from which this dataset was discovered.

    uri: string

    The unique URI of this dataset.