@squidcloud/client
    Preparing search index...

    Interface ExecutedQuery

    Details of an executed query, including the query text and result type.

    interface ExecutedQuery {
        markdownType: string;
        query: string;
        rawResultsUrl?: string;
    }
    Index

    Properties

    markdownType: string

    The markdown type of the result (sql, mongo, etc.).

    query: string

    Text of the executed query.

    rawResultsUrl?: string

    URL to access raw results from the query execution.