Module Cephalopod_models.App_Bsky_Unspecced_SearchStarterPacksSkeleton

lexicon "app.bsky.unspecced.searchStarterPacksSkeleton"

def main

type main_params = {
  1. q : string;
    (*

    Search query string; syntax, phrase, boolean, and faceting is unspecified, but Lucene query syntax is recommended.

    *)
  2. viewer : string option;
    (*

    DID of the account making the request (not included for public/unauthenticated queries). format: "Did"

    *)
  3. limit : int64 option;
    (*

    default: 25 maximum: 100 minimum: 1

    *)
  4. cursor : string option;
    (*

    Optional pagination mechanism; may not necessarily allow scrolling through entire result set.

    *)
}
val show_main_params : main_params -> Ppx_deriving_runtime.string
val make_main_params : q:string -> ?viewer:string -> ?limit:int64 -> ?cursor:string -> unit -> main_params
val main_params_of_value : main_params Cephalopod_dasl.Value.Util.conv
val main_params_to_value : main_params -> Cephalopod_dasl.Value.t
type main_output = {
  1. cursor : string option;
  2. hitsTotal : int64 option;
    (*

    Count of search hits. Optional, may be rounded/truncated, and may not be possible to paginate through all hits.

    *)
  3. starterPacks : Types.app_bsky_unspecced_defs_skeletonsearchstarterpack list;
}
val show_main_output : main_output -> Ppx_deriving_runtime.string
val main_output_of_value : main_output Cephalopod_dasl.Value.Util.conv
val main_output_to_value : main_output -> Cephalopod_dasl.Value.t
type main_error = [
  1. | `BadQueryString
]
val show_main_error : main_error -> Ppx_deriving_runtime.string

Backend Starter Pack search, returns only skeleton.