Skip to content

Commit

Permalink
fix #5
Browse files Browse the repository at this point in the history
  • Loading branch information
mpadge committed Mar 6, 2024
1 parent 985f576 commit 97840af
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: dashboard
Title: What the Package Does (One Line, Title Case)
Version: 0.0.0.016
Version: 0.0.0.017
Authors@R:
person(given = "First",
family = "Last",
Expand Down
5 changes: 4 additions & 1 deletion R/gh-queries.R
Original file line number Diff line number Diff line change
Expand Up @@ -129,10 +129,13 @@ gh_issue_assignees_qry <- function (org = "ropensci",
if (!is.null (end_cursor)) {
after_txt <- paste0 (", after:\"", end_cursor, "\"")
}
# Vitally important (see issue #5):
order_txt <-
", orderBy: {field: CREATED_AT, direction: ASC}"

q <- paste0 ("{
repository(owner:\"", org, "\", name:\"", repo, "\") {
issues (first: 100", after_txt, ") {
issues (first: 100", after_txt, order_txt, ") {
pageInfo {
hasNextPage
endCursor
Expand Down
2 changes: 1 addition & 1 deletion codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"name": "dashboard: What the Package Does (One Line, Title Case)",
"codeRepository": "https://github.com/ropensci-review-tools/dashboard",
"license": "https://spdx.org/licenses/MIT",
"version": "0.0.0.016",
"version": "0.0.0.017",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "R",
Expand Down

0 comments on commit 97840af

Please sign in to comment.