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