From 36fafbd2633c34782bb0c8e9dc778647c3ff6ff1 Mon Sep 17 00:00:00 2001 From: pseusys Date: Sat, 18 Feb 2023 17:53:14 +0100 Subject: [PATCH] query limitations info added --- sources/manager_download.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sources/manager_download.py b/sources/manager_download.py index 512ea24..8ae1a0a 100644 --- a/sources/manager_download.py +++ b/sources/manager_download.py @@ -13,6 +13,7 @@ from manager_github import GitHubManager as GHM GITHUB_API_QUERIES = { # Query to collect info about all user repositories, including: is it a fork, name and owner login. + # NB! Query includes information about recent repositories only (apparently, contributed within a year). "repos_contributed_to": """ { user(login: "$username") { @@ -28,6 +29,7 @@ GITHUB_API_QUERIES = { } }""", # Query to collect info about all commits in user repositories, including: commit date. + # NB! Query includes information about repositories owned by user only. "repo_committed_dates": """ { repository(owner: "$owner", name: "$name") { @@ -47,6 +49,7 @@ GITHUB_API_QUERIES = { } }""", # Query to collect info about all repositories user created or collaborated on, including: name, primary language and owner login. + # NB! Query doesn't include information about repositories user contributed to via pull requests. "user_repository_list": """ { user(login: "$username") {