debian-mirror-gitlab/lib/bulk_imports/projects/graphql/queryable.rb
2022-01-26 12:08:38 +05:30

25 lines
430 B
Ruby

# frozen_string_literal: true
module BulkImports
module Projects
module Graphql
module Queryable
def variables(context)
{ full_path: context.entity.source_full_path }
end
def base_path
%w[data project]
end
def data_path
base_path
end
def page_info_path
base_path << 'page_info'
end
end
end
end
end