theom
07/11/2018, 12:51 PMquery allPostsCommentsQuery ($first: Int, $skip: Int, $orderBy: PostOrderBy) {
_allPostsesMeta {
count
}
}
How do I return the count in this prisma instance?
const FEED_QUERY = gql`
query FeedQuery($first: Int, $skip: Int, $orderBy: PostOrderByInput) {
feed(first: $first, skip: $skip, orderBy: $orderBy) {
id
text
title
isPublished
author {
name
}
}
}
`
nilan
07/11/2018, 1:33 PMtheom
07/11/2018, 2:17 PM