Class: BulkImports::Groups::Graphql::GetProjectsQuery

Inherits:
Object
  • Object
show all
Defined in:
lib/bulk_imports/groups/graphql/get_projects_query.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(context:) ⇒ GetProjectsQuery

Returns a new instance of GetProjectsQuery.



9
10
11
# File 'lib/bulk_imports/groups/graphql/get_projects_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/groups/graphql/get_projects_query.rb', line 7

def context
  @context
end

Instance Method Details

#base_pathObject



42
43
44
# File 'lib/bulk_imports/groups/graphql/get_projects_query.rb', line 42

def base_path
  %w[data group projects]
end

#data_pathObject



46
47
48
# File 'lib/bulk_imports/groups/graphql/get_projects_query.rb', line 46

def data_path
  base_path << 'nodes'
end

#page_info_pathObject



50
51
52
# File 'lib/bulk_imports/groups/graphql/get_projects_query.rb', line 50

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

def to_s
  <<-'GRAPHQL'
  query($full_path: ID!, $cursor: String, $per_page: Int) {
    group(fullPath: $full_path) {
      projects(includeSubgroups: false, first: $per_page, after: $cursor) {
        page_info: pageInfo {
          next_page: endCursor
          has_next_page: hasNextPage
        }
        nodes {
          id
          name
          path
          full_path: fullPath
        }
      }
    }
  }
  GRAPHQL
end

#variablesObject



34
35
36
37
38
39
40
# File 'lib/bulk_imports/groups/graphql/get_projects_query.rb', line 34

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