summaryrefslogtreecommitdiff
path: root/app/graphql/types/customer_relations/contact_state_enum.rb
blob: 1e5cae8528fc0605fa32823455c31716c5182e50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

module Types
  module CustomerRelations
    class ContactStateEnum < BaseEnum
      graphql_name 'CustomerRelationsContactState'

      value 'all',
            description: "All available contacts.",
            value: :all

      value 'active',
            description: "Active contacts.",
            value: :active

      value 'inactive',
            description: "Inactive contacts.",
            value: :inactive
    end
  end
end