(&self, id: String)
| 236 | } |
| 237 | |
| 238 | pub async fn organization(&self, id: String) -> Result<Option<graphql::Organization>> { |
| 239 | self.organization_loader.load_one(id).await |
| 240 | } |
| 241 | |
| 242 | pub async fn repositories_for_user(&self, user_id: String) -> Result<Vec<graphql::Repository>> { |
| 243 | psql::FetchWriteableRepositoriesForUser::new(Arc::clone(&self.viewer), user_id) |
nothing calls this directly
no outgoing calls
no test coverage detected