how does maintain "count"? #976
-
question, maintaining counts only repositories with maintain+ perm? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi 👋 ! If you're talking about the stats located under the two-weeks calendar, it uses the following from GitHub GraphQL API: metrics/source/plugins/base/queries/user.x.graphql Lines 30 to 32 in de323b1 Else if you were asking about the repositories sections, then it depends to the value of Additionally, |
Beta Was this translation helpful? Give feedback.
Hi 👋 !
If you're talking about the stats located under the two-weeks calendar, it uses the following from GitHub GraphQL API:
metrics/source/plugins/base/queries/user.x.graphql
Lines 30 to 32 in de323b1
Else if you were asking about the repositories sections, then it depends to the value of
repositories_affiliations
, which is set to theowner
constraints by default. You can extend it tocollaborator
,organization_member
or the broadest one which is no constraints:""
Additionally,
repositories_forks
are also ignored by default in case you were wondering, but can be opted-in too