@triply/triplydb
    Preparing search index...

    Interface QueryInfo

    interface QueryInfo {
        accessLevel: AccessLevel;
        createdAt: string;
        dataset?: DatasetInfo;
        description: string;
        displayName?: string;
        executionStats?: QueryExecutionStatistics;
        id: string;
        lastQueriedAt?: string;
        link: string;
        name: string;
        numberOfVersions: number;
        owner: AccountInfo;
        renderConfig?: QueryRenderConfig;
        requestConfig?: QueryRequestConfig;
        service: string;
        serviceConfig: {
            service?: ServiceMetadataSmall;
            type: SparqlQueryServiceType;
        };
        tags: string[];
        updatedAt: string;
        variables?: VariableConfig[];
        version: number;
        versionsInformation: VersionInformation[];
    }
    Index
    accessLevel: AccessLevel

    Who can reach this — see AccessLevel.

    createdAt: string

    When this was created.

    dataset?: DatasetInfo

    The dataset the query runs against. Absent for a query saved without one.

    description: string

    Free-text description, shown on the resource's page.

    displayName?: string

    Title shown in the interface, free of the restrictions that apply to name.

    executionStats?: QueryExecutionStatistics

    Timings from recent runs, where the instance records them.

    id: string

    Stable identifier, unchanged by renames.

    lastQueriedAt?: string

    When the query was last run, by anyone. Absent if it never has been.

    link: string

    The query's own URL, for linking to it.

    name: string

    Short name, unique within the owning account and part of the query's URL.

    numberOfVersions: number

    How many versions have been saved; the newest is this many.

    The user or group that owns this query.

    renderConfig?: QueryRenderConfig

    How results are displayed in the interface — table, geo, gallery and so on.

    requestConfig?: QueryRequestConfig

    The query text and the parameters it is run with.

    service: string

    SPARQL endpoint the query runs against, or "" when the caller cannot reach a service.

    serviceConfig: { service?: ServiceMetadataSmall; type: SparqlQueryServiceType }

    The kind of service the query needs, and that service's details when it exists.

    tags: string[]

    Free-form labels, used for filtering and search.

    updatedAt: string

    When this was last changed, including its metadata.

    variables?: VariableConfig[]

    The variables the query accepts, with their types and defaults.

    version: number

    The version this metadata describes, not necessarily the newest one.

    versionsInformation: VersionInformation[]

    One entry per version, so a caller can pick one without fetching each in turn.