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
  "  query($full_path: ID!) {\n    group(fullPath: $full_path) {\n      id\n      name\n      path\n      description\n      visibility\n      emails_disabled: emailsDisabled\n      lfs_enabled: lfsEnabled\n      mentions_disabled: mentionsDisabled\n      project_creation_level: projectCreationLevel\n      request_access_enabled: requestAccessEnabled\n      require_two_factor_authentication: requireTwoFactorAuthentication\n      share_with_group_lock: shareWithGroupLock\n      subgroup_creation_level: subgroupCreationLevel\n      two_factor_grace_period: twoFactorGracePeriod\n    }\n  }\n  GRAPHQL\nend\n"

#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