Class: BulkImports::Common::Graphql::GetMembersQuery

Inherits:
Object
  • Object
show all
Defined in:
lib/bulk_imports/common/graphql/get_members_query.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(context:) ⇒ GetMembersQuery

Returns a new instance of GetMembersQuery.



9
10
11
# File 'lib/bulk_imports/common/graphql/get_members_query.rb', line 9

def initialize(context:)
  @context = context
end

Instance Attribute Details

#contextObject (readonly)

Returns the value of attribute context.



7
8
9
# File 'lib/bulk_imports/common/graphql/get_members_query.rb', line 7

def context
  @context
end

Instance Method Details

#data_pathObject



49
50
51
# File 'lib/bulk_imports/common/graphql/get_members_query.rb', line 49

def data_path
  base_path << 'nodes'
end

#page_info_pathObject



53
54
55
# File 'lib/bulk_imports/common/graphql/get_members_query.rb', line 53

def page_info_path
  base_path << 'page_info'
end

#to_sObject



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
# File 'lib/bulk_imports/common/graphql/get_members_query.rb', line 13

def to_s
  <<-GRAPHQL
  query($full_path: ID!, $cursor: String, $per_page: Int) {
    portable: #{context.entity.entity_type}(fullPath: $full_path) {
      members: #{members_type}(relations: [#{relations}], first: $per_page, after: $cursor) {
        page_info: pageInfo {
          next_page: endCursor
          has_next_page: hasNextPage
        }
        nodes {
          created_at: createdAt
          updated_at: updatedAt
          expires_at: expiresAt
          access_level: accessLevel {
            integer_value: integerValue
          }
          user {
            user_gid: id
            public_email: publicEmail
            username: username
          }
        }
      }
    }
  }
  GRAPHQL
end

#variablesObject



41
42
43
44
45
46
47
# File 'lib/bulk_imports/common/graphql/get_members_query.rb', line 41

def variables
  {
    full_path: context.entity.source_full_path,
    cursor: context.tracker.next_page,
    per_page: ::BulkImports::Tracker::DEFAULT_PAGE_SIZE
  }
end