Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -160,5 +160,13 @@ cython_debug/
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
# MAC

# MacOS
.DS_Store

# VSCode
.vscode/
.history/

# devstats
devstats-data/
3 changes: 0 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
# Install pre-commit hooks via
# pre-commit install

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: cef0300fd0fc4d2a87a85fa2093c6b283ea36f4b # frozen: v5.0.0
Expand Down
10 changes: 8 additions & 2 deletions devstats/queries/issue_activity_since_date.gql
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,16 @@ query {
number
title
createdAt
state
closedAt
updatedAt
closedAt
state
url
reactionGroups {
content
users {
totalCount
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Indentation?

Copy link
Copy Markdown
Member Author

@nabobalis nabobalis May 12, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah I screwed that up. Should be fixed now.

}
}
labels(first: 100) {
edges {
node {
Expand Down
9 changes: 9 additions & 0 deletions devstats/queries/pr_data_query.gql
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,17 @@ query {
state
title
createdAt
updatedAt
closedAt
baseRefName
mergeable
labels(first: 100) {
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why the limit here?

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It was just to match the same limit as for the issue query. There is no real reason for it otherwise.

edges {
node {
name
}
}
}
author{
login
}
Expand Down
Loading