debian-mirror-gitlab/lib/bulk_imports/projects/graphql/get_project_query.rb
2022-07-01 11:34:44 +05:30

22 lines
406 B
Ruby

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