(
&self,
collection: Option<&str>,
as_of: Option<i64>,
)
| 104 | } |
| 105 | |
| 106 | async fn graph_stats( |
| 107 | &self, |
| 108 | collection: Option<&str>, |
| 109 | as_of: Option<i64>, |
| 110 | ) -> NodeDbResult<Vec<GraphStats>> { |
| 111 | self.graph_stats_impl(collection, as_of).await |
| 112 | } |
| 113 | |
| 114 | async fn graph_pagerank( |
| 115 | &self, |
nothing calls this directly
no test coverage detected