(
after: Option<String>,
before: Option<String>,
first: Option<i32>,
last: Option<i32>,
topics: BTreeSet<git::Topic>,
)
| 35 | } |
| 36 | |
| 37 | pub async fn topics( |
| 38 | after: Option<String>, |
| 39 | before: Option<String>, |
| 40 | first: Option<i32>, |
| 41 | last: Option<i32>, |
| 42 | topics: BTreeSet<git::Topic>, |
| 43 | ) -> Result< |
| 44 | Connection<String, Topic, EmptyFields, EmptyFields, DefaultConnectionName, DefaultEdgeName>, |
| 45 | > { |
| 46 | let results = topics.iter().map(Topic::from).collect_vec(); |
| 47 | connection(after, before, first, last, results).await |
| 48 | } |
no test coverage detected