27f2597b07
Close #156 and #158 Signed-off-by: Thomas Citharel <tcit@tcit.fr>
20 lines
400 B
TypeScript
20 lines
400 B
TypeScript
import gql from 'graphql-tag';
|
|
|
|
export const DASHBOARD = gql`
|
|
query {
|
|
dashboard {
|
|
lastPublicEventPublished {
|
|
title,
|
|
picture {
|
|
alt
|
|
url
|
|
},
|
|
},
|
|
numberOfUsers,
|
|
numberOfEvents,
|
|
numberOfComments,
|
|
numberOfReports
|
|
}
|
|
}
|
|
`;
|