Applesauce
    Preparing search index...

    Type Alias SocialGraphLoader

    SocialGraphLoader: (
        user: ProfilePointer & { distance: number; since?: number },
    ) => Observable<NostrEvent>

    A loader that loads the social graph of a user out to a set distance.

    Pass since (unix seconds) to skip follow lists the relay already knows are older. When since is set and the relay returns nothing for a user, the loader falls back to eventStore.getReplaceable(kinds.Contacts, pubkey) so crawl expansion still happens from the cached copy.

    Type Declaration