5 lines
72 B
GraphQL
5 lines
72 B
GraphQL
query Post($id: String!) {
|
|
post(id: $id) {
|
|
...RegularPost
|
|
}
|
|
} |