6 lines
94 B
GraphQL
6 lines
94 B
GraphQL
query QuestionPage($id: ID!) {
|
|
result: question(id: $id) {
|
|
...QuestionWithHistory
|
|
}
|
|
}
|