20 lines
530 B
Elixir
20 lines
530 B
Elixir
|
defmodule Mobilizon.GraphQL.Resolvers.Statistics do
|
||
|
@moduledoc """
|
||
|
Handles the statistics-related GraphQL calls.
|
||
|
"""
|
||
|
|
||
|
alias Mobilizon.Service.Statistics, as: StatisticsModule
|
||
|
|
||
|
@doc """
|
||
|
Gets config.
|
||
|
"""
|
||
|
def get_statistics(_parent, _params, _context) do
|
||
|
{:ok,
|
||
|
%{
|
||
|
number_of_users: StatisticsModule.get_cached_value(:local_users),
|
||
|
number_of_events: StatisticsModule.get_cached_value(:local_events),
|
||
|
number_of_comments: StatisticsModule.get_cached_value(:local_comments)
|
||
|
}}
|
||
|
end
|
||
|
end
|