16 lines
166 B
GraphQL
16 lines
166 B
GraphQL
fragment RegularPost on Post {
|
|
id
|
|
authorID
|
|
title
|
|
content
|
|
createdAt
|
|
updatedAt
|
|
snippet
|
|
points
|
|
upvoted
|
|
downvoted
|
|
author {
|
|
...RegularUser
|
|
}
|
|
}
|