---
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
query CheckResetPasswordToken($token: String!) {
|
||||
checkResetPasswordToken(token: $token)
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
query Me {
|
||||
me {
|
||||
...RegularUser
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
query Post($id: String!) {
|
||||
post(id: $id) {
|
||||
...RegularPost
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
query Posts($limit: Int, $cursor: Timestamp) {
|
||||
posts(limit: $limit, cursor: $cursor) {
|
||||
...RegularPost
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user