-
Notifications
You must be signed in to change notification settings - Fork 0
feature: Exclude archived repositories from list queries TAROT-3758 #30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,6 +9,7 @@ query ListUserRepositoriesQuery( | |
| after: $page | ||
| affiliations: [ OWNER ] | ||
| orderBy: { field: PUSHED_AT, direction: DESC } | ||
| isArchived: false | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The |
||
| ) { | ||
| nodes { | ||
| ... on Repository { | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
repositoriesfield on theOrganizationtype in the GitHub GraphQL schema does not accept anisArchivedargument. AddingisArchived: falsehere will cause a GraphQL validation error. To filter out archived repositories, you must either fetch theisArchivedfield and filter them on the client side, or use thesearchquery witharchived:false.