diff --git a/frontend/src/graphql/queries.js b/frontend/src/graphql/queries.js index 58549750c..03299dd49 100644 --- a/frontend/src/graphql/queries.js +++ b/frontend/src/graphql/queries.js @@ -243,3 +243,15 @@ export const communityStatistics = gql` } } ` + +export const searchAdminUsers = gql` + query { + searchAdminUsers { + userCount + userList { + firstName + lastName + } + } + } +` diff --git a/frontend/src/pages/InfoStatistic.vue b/frontend/src/pages/InfoStatistic.vue index 24ae11013..1c8619bbe 100644 --- a/frontend/src/pages/InfoStatistic.vue +++ b/frontend/src/pages/InfoStatistic.vue @@ -37,7 +37,9 @@ {{ $t('community.moderators') }} - {{ item.name }} + + {{ item.firstName }} {{ item.lastName }} + {{ supportMail }} @@ -79,7 +81,7 @@