Documentation
    Preparing search index...

    Properties for HTTP route execution.

    interface IFetchProps {
        body?: object;
        connection: IHttpConnection;
        parameters:
            | (string | number | bigint | boolean | null)[]
            | Record<string, string | number | bigint | boolean | null>;
        query?: object;
        route: IHttpMigrateRoute;
    }
    Index

    Properties

    body?: object

    Request body.

    connection: IHttpConnection

    HTTP connection info.

    parameters:
        | (string | number | bigint | boolean | null)[]
        | Record<string, string | number | bigint | boolean | null>

    Path parameters.

    query?: object

    Query parameters.

    Route to execute.