Git Query language is a SQL like language to perform queries on .git files with supports of most of SQL features such as grouping, ordering and aggregations functions
GQL is good enough for normal git repository. Now lots of repositories are hosted on GitHub, and any plan to add support for GitHub. I think the following virtual tables are very important.
issues
actions
pull_requests
discussions
For authentication, Integration with GitHub CLI is a good solution or with GITHUB_TOKEN env variable.
I like this idea, i am thinking of applying it but as a new GitQL SDK application like ClangQL and FileQL, also i think we can use the graphQL to optimize the remote query too using Github API 3
GQL is good enough for normal git repository. Now lots of repositories are hosted on GitHub, and any plan to add support for GitHub. I think the following virtual tables are very important.
For authentication, Integration with GitHub CLI is a good solution or with
GITHUB_TOKEN
env variable.