We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26aca3b commit 49d0b56Copy full SHA for 49d0b56
src/relation/graph_query.rs
@@ -22,6 +22,14 @@ impl RelationGraph {
22
.collect();
23
}
24
25
+ pub fn files(&self) -> Vec<String> {
26
+ return self.get_keys(&self.file_mapping);
27
+ }
28
+
29
+ pub fn commits(&self) -> Vec<String> {
30
+ return self.get_keys(&self.commit_mapping);
31
32
33
pub fn issues(&self) -> Vec<String> {
34
return self.get_keys(&self.issue_mapping);
35
0 commit comments