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

module Types
  class TodoStateEnum < BaseEnum
    value 'pending'
    value 'done'
  end
end