Type alias QueryOpts<T>

QueryOpts<T>: {
    args: HandlerArgs<T>;
    query: T;
    queryDescriptor: QueryDescriptor;
    span?: Span;
}

Options used to make a remotedb query

Type Parameters

Type declaration

  • args: HandlerArgs<T>

    Arguments to pass to the query. These are query speciifc

  • query: T

    The query type to make

  • queryDescriptor: QueryDescriptor
  • Optional span?: Span

    The sentry span to assicate the query with

Generated using TypeDoc