(
&self,
repo_id: RepoId,
topic_id: &ExternalId,
)
| 223 | } |
| 224 | |
| 225 | pub async fn remove_topic_timerange( |
| 226 | &self, |
| 227 | repo_id: RepoId, |
| 228 | topic_id: &ExternalId, |
| 229 | ) -> Result<git::RemoveTopicTimerangeResult> { |
| 230 | git::RemoveTopicTimerange { |
| 231 | actor: Arc::clone(&self.viewer), |
| 232 | repo_id, |
| 233 | topic_id: topic_id.clone(), |
| 234 | } |
| 235 | .call(self.mutation()?, &self.redis) |
| 236 | } |
| 237 | |
| 238 | pub async fn organization(&self, id: String) -> Result<Option<graphql::Organization>> { |
| 239 | self.organization_loader.load_one(id).await |