This commit is contained in:
2026-06-24 14:20:05 +02:00
commit 1c859d20c8
442 changed files with 25625 additions and 0 deletions
@@ -0,0 +1,4 @@
fragment RegularError on FieldError {
field
message
}
@@ -0,0 +1,15 @@
fragment RegularPost on Post {
id
authorID
title
content
createdAt
updatedAt
snippet
points
upvoted
downvoted
author {
...RegularUser
}
}
@@ -0,0 +1,8 @@
fragment RegularPostResponse on PostResponse {
errors {
...RegularError
}
post {
...RegularPost
}
}
@@ -0,0 +1,7 @@
fragment RegularUser on User {
id
email
username
createdAt
updatedAt
}
@@ -0,0 +1,8 @@
fragment RegularUserResponse on UserResponse {
errors {
...RegularError
}
user {
...RegularUser
}
}