๐Ÿ€ ATproto library for gleam
atproto library gleam
34

Configure Feed

Select the types of activity you want to include in your feed.

possum: change "true" and "false" on the doc comments to "option.Some(True)" and "option.Some(False)"

kacaii.dev (Jul 11, 2026, 11:14 PM -0300) a18bbdfa 524cdc6e

+2 -7
+2 -7
src/possum.gleam
··· 501 501 502 502 /// Get a single record from a repository. Does not require auth. 503 503 /// 504 - /// A **record key** (rkey) is used to name and reference an individual record 505 - /// withing the same collection of an repository. 506 - /// 507 504 /// You can use projects like [Slingshot](https://slingshot.microcosm.blue) 508 505 /// for easy access to cached data. 509 506 /// ··· 724 721 /// ## Body 725 722 /// 726 723 /// - **collection**: The NSID of the record collection. 727 - /// - **record** 728 724 /// - **repo**: The handle or DID of the repo (aka, current account). 729 725 /// - **rkey**: The Record Key. 730 726 /// - **swapCommit**: Compare and swap with the previous commit by CID. 731 727 /// - **swapRecord**: Compare and swap with the previous record by CID. 732 - /// WARNING: nullable and optional field; 733 - /// - **validate**: Can be set to `false` to skip Lexicon schema validation 734 - /// of record data, 'true' to require it, or leave unset to validate only 728 + /// - **validate**: Can be set to `option.Some(False)` to skip Lexicon schema validation 729 + /// of record data, `option.Some(True)` to require it, or leave unset to validate only 735 730 /// for known Lexicons. 736 731 /// 737 732 /// ## Examples