summaryrefslogtreecommitdiff
path: root/app/graphql/types/users/email_type.rb
blob: 5e0b9563f5729238f3766cdb29318aa60f46b9a7 (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
36
# frozen_string_literal: true

module Types
  module Users
    class EmailType < BaseObject
      graphql_name 'Email'

      authorize :read_user_email_address

      field :id,
            GraphQL::Types::ID,
            null: false,
            description: 'Internal ID of the email.'

      field :email,
            GraphQL::Types::String,
            null: false,
            description: 'Email address.'

      field :confirmed_at,
            Types::TimeType,
            null: true,
            description: 'Timestamp the email was confirmed.'

      field :created_at,
            Types::TimeType,
            null: false,
            description: 'Timestamp the email was created.'

      field :updated_at,
            Types::TimeType,
            null: false,
            description: 'Timestamp the email was last updated.'
    end
  end
end