This commit is contained in:
2026-06-24 15:34:09 +02:00
commit 65fb6816ca
442 changed files with 27246 additions and 0 deletions
@@ -0,0 +1,3 @@
query CheckResetPasswordToken($token: String!) {
checkResetPasswordToken(token: $token)
}
+5
View File
@@ -0,0 +1,5 @@
query Me {
me {
...RegularUser
}
}
+5
View File
@@ -0,0 +1,5 @@
query Post($id: String!) {
post(id: $id) {
...RegularPost
}
}
+5
View File
@@ -0,0 +1,5 @@
query Posts($limit: Int, $cursor: Timestamp) {
posts(limit: $limit, cursor: $cursor) {
...RegularPost
}
}