summaryrefslogtreecommitdiff
path: root/app/graphql/mutations/todos/mark_all_done.rb
blob: 5694985717c969647a0f04e4b1fb0deaba370cf2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# frozen_string_literal: true

module Mutations
  module Todos
    class MarkAllDone < ::Mutations::Todos::Base
      graphql_name 'TodosMarkAllDone'

      authorize :update_user

      field :updated_ids,
            [GraphQL::ID_TYPE],
            null: false,
            description: 'Ids of the updated todos'

      def resolve
        authorize!(current_user)

        updated_ids = mark_all_todos_done

        {
          updated_ids: map_to_global_ids(updated_ids),
          errors: []
        }
      end

      private

      def mark_all_todos_done
        return [] unless current_user

        TodoService.new.mark_all_todos_as_done_by_user(current_user)
      end
    end
  end
end