import { type RDF } from "https://deno.land/x/ldkit@v0.6.0/rdf.ts";
const { QueryOperationCost } = RDF;
QueryOperationCost represents the cost of a given query operation.
Index Signatures
key: string]: any
[Properties
An estimation of how many iterations over items are executed. This is used to determine the CPU cost.
An estimation of how many items are stored in memory. This is used to determine the memory cost.
An estimation of how many items block the stream. This is used to determine the time the stream is not progressing anymore.