2019-09-05 17:22:04 +02:00

16 lines
236 B
JavaScript

import gql from 'graphql-tag'
export const Statistics = gql`
query {
statistics {
countUsers
countPosts
countComments
countNotifications
countInvites
countFollows
countShouts
}
}
`