(
&self,
collection: Option<&str>,
as_of: Option<i64>,
)
| 147 | } |
| 148 | |
| 149 | pub(super) async fn graph_stats_impl( |
| 150 | &self, |
| 151 | collection: Option<&str>, |
| 152 | as_of: Option<i64>, |
| 153 | ) -> NodeDbResult<Vec<GraphStats>> { |
| 154 | let sql = build_graph_stats_sql(collection, as_of); |
| 155 | let (columns, rows) = self.simple_query_raw(&sql).await?; |
| 156 | parse_graph_stats_response(&columns, &rows) |
| 157 | } |
| 158 | |
| 159 | pub(super) async fn graph_pagerank_impl( |
| 160 | &self, |
no test coverage detected