summaryrefslogtreecommitdiff
path: root/app/graphql/types/todo_state_enum.rb
blob: e6fc8867a80b9d44e3781ac9157aa7c1def64564 (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

module Types
  class TodoStateEnum < BaseEnum
    value 'pending', description: "State of the todo is pending."
    value 'done', description: "State of the todo is done."
  end
end