17 lines
262 B
JavaScript

import gql from 'graphql-tag'
export const comment = gql`
fragment comment on Comment {
id
createdAt
updatedAt
disabled
deleted
content
isPostObservedByMe
postObservingUsersCount
shoutedByCurrentUser
shoutedCount
}
`