web & server: implement handling for text and html bodies.

This commit is contained in:
2023-11-26 16:37:29 -08:00
parent 1cdabc348b
commit 11366b6fac
4 changed files with 204 additions and 7 deletions

View File

@@ -16,6 +16,18 @@ query ShowThreadQuery($threadId: String!) {
addr
}
timestamp
body {
__typename
... on UnhandledContentType {
contents
}
... on PlainText {
contents
}
... on Html {
contents
}
}
}
}
tags {