The query contains one or more search keywords and qualifiers. Qualifiers allow you to limit your search to specific areas of GitHub. The REST API supports the same qualifiers as GitHub.com.
To learn more about the format of the query, see Constructing a search query: https://developer.github.com/v3/search/#constructing-a-search-query
For a detailed list of qualifiers see "Searching for repositories": https://help.github.com/en/github/searching-for-information-on-github/searching-for-repositories
async
(params, auths) => {
}
//See the API docs: https://developer.github.com/v3/search/#search-repositories
const config = {
url: `https://api.github.com/search/repositories`,
params: {
order: params.order,
q: params.query,
sort: params.sort,
},
headers: {
Authorization: `Bearer ${auths.github.oauth_access_token}`,
},
}
return await require("@pipedreamhq/platform").axios(this, config)