Module Cephalopod_models.Com_Atproto_Sync_ListReposByCollection

lexicon "com.atproto.sync.listReposByCollection"

def main

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

    format: "Nsid"

    *)
  2. limit : int64 option;
    (*

    Maximum size of response set. Recommend setting a large maximum (1000+) when enumerating large DID lists. default: 500 maximum: 2000 minimum: 1

    *)
  3. cursor : string option;
}
val show_main_params : main_params -> Ppx_deriving_runtime.string
val make_main_params : collection: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. repos : Types.com_atproto_sync_listreposbycollection_repo 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
val main : (main_params, main_output, unit) Base.query

Enumerates all the DIDs which have records with the given collection NSID.

def repo

type nonrec repo = Types.com_atproto_sync_listreposbycollection_repo = {
  1. did : string;
    (*

    format: "Did"

    *)
}