What is the SQL query to get the list of all repositories present in a Bitbucket server?
Welcome to the Atlassian community
select rep.name AS "Repository Name"
, rep.slug AS "Repository Slug"
FROM repository rep
if you would like to join also the project which the repos belong to you can take a look to
Cheers
Kurt
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.