// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT. // Lexicon schema: app.bsky.graph.muteActorList package bsky import ( "context" lexutil "github.com/bluesky-social/indigo/lex/util" ) // GraphMuteActorList_Input is the input argument to a app.bsky.graph.muteActorList call. type GraphMuteActorList_Input struct { List string `json:"list" cborgen:"list"` } // GraphMuteActorList calls the XRPC method "app.bsky.graph.muteActorList". func GraphMuteActorList(ctx context.Context, c lexutil.LexClient, input *GraphMuteActorList_Input) error { if err := c.LexDo(ctx, lexutil.Procedure, "application/json", "app.bsky.graph.muteActorList", nil, input, nil); err != nil { return err } return nil }