mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2026-03-01 12:44:28 +00:00
18 lines
344 B
TypeScript
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
|
|
}
|
|
}
|
|
`
|