Files
TKT20009-Course-Project-I/frontend/graphql/fragments/RegularPost.graphql
T
2026-06-24 15:34:09 +02:00

16 lines
166 B
GraphQL

fragment RegularPost on Post {
id
authorID
title
content
createdAt
updatedAt
snippet
points
upvoted
downvoted
author {
...RegularUser
}
}