web: add basic graphql view thread, no body support.
This commit is contained in:
21
web/graphql/show_thread.graphql
Normal file
21
web/graphql/show_thread.graphql
Normal file
@@ -0,0 +1,21 @@
|
||||
query ShowThreadQuery($threadId: String!) {
|
||||
thread(threadId: $threadId) {
|
||||
subject
|
||||
messages {
|
||||
subject
|
||||
from {
|
||||
name
|
||||
addr
|
||||
}
|
||||
to {
|
||||
name
|
||||
addr
|
||||
}
|
||||
cc {
|
||||
name
|
||||
addr
|
||||
}
|
||||
timestamp
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user