Class: BulkImports::Groups::Graphql::GetGroupQuery

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(context:) ⇒ GetGroupQuery

Returns a new instance of GetGroupQuery.



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

def context
  @context
end

Instance Method Details

#base_pathObject



40
41
42
# File 'lib/bulk_imports/groups/graphql/get_group_query.rb', line 40

def base_path
  %w[data group]
end

#data_pathObject



44
45
46
# File 'lib/bulk_imports/groups/graphql/get_group_query.rb', line 44

def data_path
  base_path
end

#page_info_pathObject



48
49
50
# File 'lib/bulk_imports/groups/graphql/get_group_query.rb', line 48

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

def to_s
  <<-'GRAPHQL'
  query($full_path: ID!) {
    group(fullPath: $full_path) {
      id
      name
      path
      description
      visibility
      emails_disabled: emailsDisabled
      lfs_enabled: lfsEnabled
      mentions_disabled: mentionsDisabled
      project_creation_level: projectCreationLevel
      request_access_enabled: requestAccessEnabled
      require_two_factor_authentication: requireTwoFactorAuthentication
      share_with_group_lock: shareWithGroupLock
      subgroup_creation_level: subgroupCreationLevel
      two_factor_grace_period: twoFactorGracePeriod
    }
  }
  GRAPHQL
end

#variablesObject



36
37
38
# File 'lib/bulk_imports/groups/graphql/get_group_query.rb', line 36

def variables
  { full_path: context.entity.source_full_path }
end