diff options
author | Wolfgang Müller | 2025-01-19 18:30:28 +0100 |
---|---|---|
committer | Wolfgang Müller | 2025-01-19 23:36:36 +0100 |
commit | 91cfd5d306aedb4bdcc1c4045611bee7d2270462 (patch) | |
tree | 1e88be6e7757169a9cae7651bc7c4d558e7f7604 /frontend/operations.graphql | |
parent | 261ceaa057742fc70c52885021221d7a89c28af7 (diff) | |
download | hircine-91cfd5d306aedb4bdcc1c4045611bee7d2270462.tar.gz |
frontend: Add basic statistics page
Diffstat (limited to 'frontend/operations.graphql')
-rw-r--r-- | frontend/operations.graphql | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/frontend/operations.graphql b/frontend/operations.graphql index 5c41080..4ca665b 100644 --- a/frontend/operations.graphql +++ b/frontend/operations.graphql @@ -430,6 +430,31 @@ query frontpage { } } +query statistics { + statistics { + total { + archives + artists + characters + circles + comic { + artists + characters + circles + tags + worlds + } + comics + images + scrapers + pages + namespaces + tags + worlds + } + } +} + mutation addComic($input: AddComicInput!) { addComic(input: $input) { ... on AddComicSuccess { |