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

6 lines
114 B
GraphQL

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