Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
# frozen_string_literal: true
module BulkImports
module Projects
module Graphql
module Queryable
attr_reader :context
def initialize(context:)
@context = context
end
def variables
{ full_path: context.entity.source_full_path }
def base_path
%w[data project]
def data_path
base_path
def page_info_path
base_path << 'page_info'