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

Method update_topic_parent_topics

backend/src/store.rs:333–346  ·  view source on GitHub ↗
(
        &self,
        repo_id: RepoId,
        topic_id: &ExternalId,
        parent_topic_ids: &[ExternalId],
    )

Source from the content-addressed store, hash-verified

331 }
332
333 pub async fn update_topic_parent_topics(
334 &self,
335 repo_id: RepoId,
336 topic_id: &ExternalId,
337 parent_topic_ids: &[ExternalId],
338 ) -> Result<git::UpdateTopicParentTopicsResult> {
339 git::UpdateTopicParentTopics {
340 actor: Arc::clone(&self.viewer),
341 repo_id,
342 topic_id,
343 parent_topic_ids,
344 }
345 .call(self.mutation()?, &self.redis)
346 }
347
348 pub async fn update_topic_synonyms(
349 &self,

Callers

nothing calls this directly

Calls 2

callMethod · 0.45
mutationMethod · 0.45

Tested by

no test coverage detected