Files
litreddit/frontend/graphql/queries/posts.graphql
T
2026-06-24 14:20:05 +02:00

6 lines
114 B
GraphQL

query Posts($limit: Int, $cursor: Timestamp) {
posts(limit: $limit, cursor: $cursor) {
...RegularPost
}
}