And graphql search with pagination.

This commit is contained in:
2023-11-20 20:56:16 -08:00
parent f52a76dba3
commit a7b172099b
4 changed files with 147 additions and 45 deletions

View File

@@ -7,7 +7,7 @@ pub fn threadset_to_messages(
thread_set: notmuch::ThreadSet,
) -> Result<Vec<Message>, error::ServerError> {
for t in thread_set.0 {
for tn in t.0 {}
for _tn in t.0 {}
}
Ok(Vec::new())
}