(
&self,
collection: Option<&str>,
as_of: Option<i64>,
)
| 96 | } |
| 97 | |
| 98 | pub(super) async fn graph_stats_impl( |
| 99 | &self, |
| 100 | collection: Option<&str>, |
| 101 | as_of: Option<i64>, |
| 102 | ) -> NodeDbResult<Vec<GraphStats>> { |
| 103 | let sql = build_native_graph_stats_sql(collection, as_of); |
| 104 | let result = self.query(&sql).await?; |
| 105 | parse_native_graph_stats(&result.columns, &result.rows) |
| 106 | } |
| 107 | |
| 108 | pub(super) async fn graph_pagerank_impl( |
| 109 | &self, |
no test coverage detected