Monorepo for Tangled
Something went wrong. Try again.
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT.
package tangled
// schema: sh.tangled.repo.listRepos
import ( "context"
"github.com/bluesky-social/indigo/lex/util")
const ( RepoListReposNSID = "sh.tangled.repo.listRepos")
// RepoListRepos_ListItem is a "listItem" in the sh.tangled.repo.listRepos schema.type RepoListRepos_ListItem struct { Cid *string `json:"cid,omitempty" cborgen:"cid,omitempty"` Uri string `json:"uri" cborgen:"uri"` // value: Embedded sh.tangled.repo record Value *util.LexiconTypeDecoder `json:"value" cborgen:"value"`}
// RepoListRepos_Output is the output of a sh.tangled.repo.listRepos call.type RepoListRepos_Output struct { Cursor *string `json:"cursor,omitempty" cborgen:"cursor,omitempty"` Items []*RepoListRepos_ListItem `json:"items" cborgen:"items"`}
// RepoListRepos calls the XRPC method "sh.tangled.repo.listRepos".//// cursor: Pagination cursor// order: Sort direction by createdAt.// subject: Owner DID whose repo records to list.func RepoListRepos(ctx context.Context, c util.LexClient, cursor string, limit int64, order string, subject string) (*RepoListRepos_Output, error) { var out RepoListRepos_Output
params := map[string]interface{}{} if cursor != "" { params["cursor"] = cursor } if limit != 0 { params["limit"] = limit } if order != "" { params["order"] = order } params["subject"] = subject if err := c.LexDo(ctx, util.Query, "", "sh.tangled.repo.listRepos", params, nil, &out); err != nil { return nil, err }
return &out, nil}