mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-12 23:35:58 +00:00
34 lines
462 B
JavaScript
34 lines
462 B
JavaScript
import gql from 'graphql-tag'
|
|
import { imageUrls } from './imageUrls'
|
|
|
|
export const post = gql`
|
|
${imageUrls}
|
|
|
|
fragment post on Post {
|
|
id
|
|
title
|
|
content
|
|
contentExcerpt
|
|
createdAt
|
|
updatedAt
|
|
sortDate
|
|
disabled
|
|
deleted
|
|
slug
|
|
language
|
|
image {
|
|
...imageUrls
|
|
sensitive
|
|
aspectRatio
|
|
type
|
|
}
|
|
author {
|
|
...user
|
|
}
|
|
pinnedAt
|
|
pinned
|
|
isObservedByMe
|
|
observingUsersCount
|
|
}
|
|
`
|