Module Cephalopod_models.App_Bsky_Unspecced_SearchActorsSkeleton

lexicon "app.bsky.unspecced.searchActorsSkeleton"

def main

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

    Search query string; syntax, phrase, boolean, and faceting is unspecified, but Lucene query syntax is recommended. For typeahead search, only simple term match is supported, not full syntax.

    *)
  2. viewer : string option;
    (*

    DID of the account making the request (not included for public/unauthenticated queries). Used to boost followed accounts in ranking. format: "Did"

    *)
  3. typeahead : bool option;
    (*

    If true, acts as fast/simple 'typeahead' query.

    *)
  4. limit : int64 option;
    (*

    default: 25 maximum: 100 minimum: 1

    *)
  5. 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 -> ?typeahead:bool -> ?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. actors : Types.app_bsky_unspecced_defs_skeletonsearchactor 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 Actors (profile) search, returns only skeleton.