Ocelot-Social/backend/src/graphql/queries/profilePagePosts.ts
Ulf Gebhardt 6fc3c03860 feat(backend): group pins (#9034)
Co-authored-by: Wolfgang Huß <wolle.huss@pjannto.com>
2026-01-28 16:53:29 +01:00

18 lines
344 B
TypeScript

import gql from 'graphql-tag'
export const profilePagePosts = gql`
query profilePagePosts(
$filter: _PostFilter
$first: Int
$offset: Int
$orderBy: [_PostOrdering]
) {
profilePagePosts(filter: $filter, first: $first, offset: $offset, orderBy: $orderBy) {
id
title
content
groupPinned
}
}
`