Welcome to mirror list, hosted at ThFree Co, Russian Federation.

get_members_query.rb « graphql « groups « bulk_imports « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e3a78124a47cb1a7d29cf5afde70e4b02fcc0447 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# frozen_string_literal: true

module BulkImports
  module Groups
    module Graphql
      module GetMembersQuery
        extend self
        def to_s
          <<-'GRAPHQL'
          query($full_path: ID!, $cursor: String) {
            group(fullPath: $full_path) {
              group_members: groupMembers(relations: DIRECT, first: 100, after: $cursor) {
                page_info: pageInfo {
                  end_cursor: endCursor
                  has_next_page: hasNextPage
                }
                nodes {
                  created_at: createdAt
                  updated_at: updatedAt
                  expires_at: expiresAt
                  access_level: accessLevel {
                    integer_value: integerValue
                  }
                  user {
                    public_email: publicEmail
                  }
                }
              }
            }
          }
          GRAPHQL
        end

        def variables(context)
          {
            full_path: context.entity.source_full_path,
            cursor: context.entity.next_page_for(:group_members)
          }
        end

        def base_path
          %w[data group group_members]
        end

        def data_path
          base_path << 'nodes'
        end

        def page_info_path
          base_path << 'page_info'
        end
      end
    end
  end
end