Ocelot-Social/backend/src/graphql/queries/posts/profilePagePosts.gql

14 lines
248 B
GraphQL

query profilePagePosts(
$filter: _PostFilter
$first: Int
$offset: Int
$orderBy: [_PostOrdering]
) {
profilePagePosts(filter: $filter, first: $first, offset: $offset, orderBy: $orderBy) {
id
title
content
groupPinned
}
}