02eac30c9b
* differenciate local & all events/comments/groups * add instance follows/followings Signed-off-by: Thomas Citharel <tcit@tcit.fr>
18 lines
333 B
TypeScript
18 lines
333 B
TypeScript
import gql from "graphql-tag";
|
|
|
|
export const STATISTICS = gql`
|
|
query {
|
|
statistics {
|
|
numberOfUsers
|
|
numberOfEvents
|
|
numberOfLocalEvents
|
|
numberOfComments
|
|
numberOfLocalComments
|
|
numberOfGroups
|
|
numberOfLocalGroups
|
|
numberOfInstanceFollowings
|
|
numberOfInstanceFollowers
|
|
}
|
|
}
|
|
`;
|