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

module Types
  module MemberInterface
    include BaseInterface

    field :access_level, Types::AccessLevelType, null: true,
          description: 'GitLab::Access level'

    field :created_by, Types::UserType, null: true,
          description: 'User that authorized membership'

    field :created_at, Types::TimeType, null: true,
          description: 'Date and time the membership was created'

    field :updated_at, Types::TimeType, null: true,
          description: 'Date and time the membership was last updated'

    field :expires_at, Types::TimeType, null: true,
          description: 'Date and time the membership expires'
  end
end