f5241954bd
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
12 lines
167 B
TypeScript
12 lines
167 B
TypeScript
import gql from "graphql-tag";
|
|
|
|
export const STATISTICS = gql`
|
|
query {
|
|
statistics {
|
|
numberOfUsers
|
|
numberOfEvents
|
|
numberOfComments
|
|
}
|
|
}
|
|
`;
|