Moving comment id into query.

This commit is contained in:
David Jay
2017-02-28 12:02:51 -05:00
parent ab16e5bfe7
commit bf23fc2974
4 changed files with 35 additions and 7 deletions
@@ -0,0 +1,13 @@
#import "../fragments/commentView.graphql"
query commentQuery($id: ID!) {
comment(id: $id) {
...commentView
parent {
...commentView
replies {
...commentView
}
}
}
}