gitlab-org--gitlab-foss/lib/bulk_imports/projects/graphql/get_repository_query.rb

22 lines
376 B
Ruby

# frozen_string_literal: true
module BulkImports
module Projects
module Graphql
class GetRepositoryQuery
include Queryable
def to_s
<<-'GRAPHQL'
query($full_path: ID!) {
project(fullPath: $full_path) {
httpUrlToRepo
}
}
GRAPHQL
end
end
end
end
end