Method: BulkImports::Projects::Graphql::GetRepositoryQuery#to_s

Defined in:
lib/bulk_imports/projects/graphql/get_repository_query.rb

#to_sObject



9
10
11
12
13
14
15
16
17
# File 'lib/bulk_imports/projects/graphql/get_repository_query.rb', line 9

def to_s
  <<-'GRAPHQL'
  query($full_path: ID!) {
    project(fullPath: $full_path) {
      httpUrlToRepo
    }
  }
  GRAPHQL
end