MCPcopy Create free account
hub / github.com/emwalker/digraph / fetch_topic

Method fetch_topic

backend/src/store.rs:187–190  ·  view source on GitHub ↗
(&self, topic_id: ExternalId)

Source from the content-addressed store, hash-verified

185 }
186
187 pub async fn fetch_topic(&self, topic_id: ExternalId) -> Result<Option<git::Topic>> {
188 let key = Okey(topic_id, self.viewer.context_repo_id);
189 self.fetch_topic_by_key(key).await
190 }
191
192 pub async fn fetch_topic_by_key(&self, key: Okey) -> Result<Option<git::Topic>> {
193 match self.object_loader.load_one(key).await? {

Callers

nothing calls this directly

Calls 2

OkeyClass · 0.85
fetch_topic_by_keyMethod · 0.80

Tested by

no test coverage detected