PRODYNA / github-users

GitHub Action that creates a list of GitHub users with their SSO identity linked
MIT License
0 stars 0 forks source link

External Collaborateuers #10

Closed dkrizic closed 6 months ago

dkrizic commented 6 months ago

Get a list of organisations in PRODYNA

{
  enterprise(slug: "prodyna") {
    slug
    name
    organizations (first:100) {
      nodes {
        name
      }
    }
  }
}

giives

{
  "data": {
    "enterprise": {
      "slug": "prodyna",
      "name": "PRODYNA SE",
      "organizations": {
        "nodes": [
          {
            "name": "BASF-contrib"
          },
          {
            "name": "BROCK-Kehrtechnik-GmbH"
          },
          {
            "name": "Contact-Tracing Canton of Zurich (archived)"
          },
          {
            "name": "DeutschlandCard"
          },
          {
            "name": "excitingag"
          },
          {
            "name": "Intelligent Business Apps"
          },
          {
            "name": "Intensivregister"
          },
          {
            "name": "LIMOSSMBG"
          },
          {
            "name": "MIVO Legacy"
          },
          {
            "name": "OLB-MBP"
          },
          {
            "name": "PD-ADAMA"
          },
          {
            "name": "PRODYNA for EKvW"
          },
          {
            "name": "PD-KGS"
          },
          {
            "name": "PD-LAT"
          },
          {
            "name": "PD-Lions"
          },
          {
            "name": "PD-PILATUS"
          },
          {
            "name": "Quirin Privatbank"
          },
          {
            "name": "PD-TAG"
          },
          {
            "name": "PD-TB"
          },
          {
            "name": "PD-TED"
          },
          {
            "name": "PRODYNA SE"
          },
          {
            "name": "PRODYNA-ALUMIL"
          },
          {
            "name": "PRODYNA-Architecture"
          },
          {
            "name": "PRODYNA-Blockchain"
          },
          {
            "name": "PRODYNA-Blog"
          },
          {
            "name": "PRODYNA-Digitalization"
          },
          {
            "name": "prodyna-eudel"
          },
          {
            "name": "PRODYNA-ManagedService"
          },
          {
            "name": "OPAP"
          },
          {
            "name": "PRODYNA PAC 22"
          },
          {
            "name": "Prodyna Architecture Certification 2023"
          },
          {
            "name": "PRODYNA-PAC-24"
          },
          {
            "name": "PRODYNA-Subpages"
          },
          {
            "name": "PRODYNA-SVA"
          },
          {
            "name": "PRODYNA - TECH"
          },
          {
            "name": "PRODYNA-Training"
          },
          {
            "name": "PRODYNA-YASBA"
          },
          {
            "name": "PRODYNA-YASM"
          },
          {
            "name": "Project-Estimator"
          },
          {
            "name": "Qnit AG"
          },
          {
            "name": "SEAT-Deutschland-GmbH"
          },
          {
            "name": "UTIMACO-HSM"
          },
          {
            "name": "Group Wiki"
          }
        ]
      }
    }
  }
}
dkrizic commented 6 months ago

Get Organisation, all Repositories and outside collaborators

{
  organization(login:"prodyna") {
    repositories(first:100) {
      pageInfo {
        hasNextPage
        startCursor
      }
      nodes {
        name
        collaborators(first:100,affiliation:OUTSIDE) {
          pageInfo {
            hasNextPage
            startCursor
          }
          nodes {
            login
            name
          }
        }
      }
    }
  }
}

gives

{
  "data": {
    "organization": {
      "repositories": {
        "pageInfo": {
          "hasNextPage": true,
          "startCursor": "Y3Vyc29yOnYyOpHOAmfAvA=="
        },
        "nodes": [
          {
            "name": "ews-java-api",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "kubectl-oidc-helper",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "meetup-jenkins-lib",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "meetup-demo-app",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "meetup-deployment-base",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "meetup-demo-environment",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "cd19-spaceman-base",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "cd19-spaceman-deployment",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "telepresence-demo",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "keycloak-ldap-posix-mapper",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": "Y3Vyc29yOnYyOpHOBE4HuA=="
              },
              "nodes": [
                {
                  "login": "esinsj",
                  "name": null
                }
              ]
            }
          },
          {
            "name": "liferay-spa-modules",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "azure-training-sample",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "go-rest-mock",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "redburn",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "go-api-test",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "exciting-clarity-db-adapter",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "exciting-clarity-rest-adapter",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "exciting-infrastructure",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "yasm",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "exciting-digital-controller",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "exciting-simulator",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "exciting-service-blueprint",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "go-microservice-base",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "on-prem-kubernetes",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "exciting-algorithms",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "go-azure-function",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "go-azure-storage-service",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "go-rest-loadtester",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "go-training",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "exciting-dashboard-ui",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "exciting-dashboard-service",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "go-training-homework",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "go-snipper",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "capt-mifune-ui",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": "Y3Vyc29yOnYyOpHOBP7vlA=="
              },
              "nodes": [
                {
                  "login": "git-agh",
                  "name": null
                },
                {
                  "login": "aditya-name",
                  "name": "Aditya Mahindru"
                },
                {
                  "login": "ghdbrowne",
                  "name": null
                }
              ]
            }
          },
          {
            "name": "capt-mifune-server",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": "Y3Vyc29yOnYyOpHOBP7vlA=="
              },
              "nodes": [
                {
                  "login": "git-agh",
                  "name": null
                },
                {
                  "login": "aditya-name",
                  "name": "Aditya Mahindru"
                },
                {
                  "login": "ghdbrowne",
                  "name": null
                }
              ]
            }
          },
          {
            "name": "capt-mifune-local",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": "Y3Vyc29yOnYyOpHOBP7vlA=="
              },
              "nodes": [
                {
                  "login": "git-agh",
                  "name": null
                },
                {
                  "login": "aditya-name",
                  "name": "Aditya Mahindru"
                },
                {
                  "login": "ghdbrowne",
                  "name": null
                }
              ]
            }
          },
          {
            "name": "exciting-customer-dashboard-ui",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "exciting-vpn",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "exciting-eventlog",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "exciting-eventlog-client",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "exciting-cronjob",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "dorner-workshop",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "exciting-clarity-adapter",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "digital-business-card",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "go-training-service-builder",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "go-training-service",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "goprobes",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "goconfig",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "limoss-poc",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "atroposs",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": "Y3Vyc29yOnYyOpHOAG55dg=="
              },
              "nodes": [
                {
                  "login": "KieranKaelin",
                  "name": "Kieran Kaelin"
                },
                {
                  "login": "mpils",
                  "name": "Marcel Pils"
                },
                {
                  "login": "maiksandmann",
                  "name": null
                },
                {
                  "login": "vkdevms",
                  "name": null
                }
              ]
            }
          },
          {
            "name": "atroposs-awr-module",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": "Y3Vyc29yOnYyOpHNXyM="
              },
              "nodes": [
                {
                  "login": "diaa",
                  "name": "Diaa Radwan"
                },
                {
                  "login": "KieranKaelin",
                  "name": "Kieran Kaelin"
                },
                {
                  "login": "PabloMugica",
                  "name": "PSM"
                },
                {
                  "login": "mpils",
                  "name": "Marcel Pils"
                },
                {
                  "login": "maiksandmann",
                  "name": null
                },
                {
                  "login": "peern",
                  "name": "Peer"
                },
                {
                  "login": "HartmannS",
                  "name": "Hartmann S"
                },
                {
                  "login": "timkrebs9",
                  "name": "Tim Krebs"
                },
                {
                  "login": "philipr888",
                  "name": null
                },
                {
                  "login": "vkdevms",
                  "name": null
                },
                {
                  "login": "TheRealActuarialDataScientist",
                  "name": null
                },
                {
                  "login": "morris-witthein-mw",
                  "name": null
                }
              ]
            }
          },
          {
            "name": "pars-flutter",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "azure-landing-zones",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "azure-hub-spoke-example",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "atroposs-sample-module",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": "Y3Vyc29yOnYyOpHOAG55dg=="
              },
              "nodes": [
                {
                  "login": "KieranKaelin",
                  "name": "Kieran Kaelin"
                },
                {
                  "login": "maiksandmann",
                  "name": null
                },
                {
                  "login": "vkdevms",
                  "name": null
                }
              ]
            }
          },
          {
            "name": "recruiting-formular-flutter",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "capt-mifune",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "opportunity-maconomy-jira-task",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "dapr-demo",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "atroposs-app-analysis-module",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": "Y3Vyc29yOnYyOpHOAWFHeQ=="
              },
              "nodes": [
                {
                  "login": "leChuckles",
                  "name": "Philipp R."
                },
                {
                  "login": "IcasabanMW",
                  "name": null
                }
              ]
            }
          },
          {
            "name": "freudenberg-tf-modules",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "pars_api_flutter",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "pars-mw-quarkus",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "Reservations",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "opportunity-maconomy-jira-sync",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "data-engineering-databricks-elt-blueprint",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "aforms2web",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "conti-hpc-azure",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "mypilatus-env-dev",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "liferay-dxp-workspace-7.4",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "data-engineering-kafka-blueprint",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "capt-mifune-wad-22",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "data-engineering-kafka-client-examples",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "reed-poc",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": "Y3Vyc29yOnYyOpHOA4uSFg=="
              },
              "nodes": [
                {
                  "login": "feltonjsd8",
                  "name": null
                },
                {
                  "login": "charlieflorish",
                  "name": "charlie"
                }
              ]
            }
          },
          {
            "name": "echo-bot-demo",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "labirinto-env",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "labirinto-strapi",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "labirinto-core",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "labirinto-app",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "Deutschland-Card-Bot",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "digitalswag",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "reservation.prodyna.com",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "icontrol",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "anomaly-detection",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "angular14ngrx14",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "aws_swiss_cloud_day_buttons",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "rocket_demo_mission_control",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "portal-wrapper-android",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "magnolia-cms-mailchimp-integration",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "msal-dart",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "appauth-js-dart",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "flutter-appauth-plugins",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "hdpvoucher",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "flutter-test-action",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "alvins-codespaces-test",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "AIW-CodeToCloud-Source",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "azure-training-setup",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "more-github-actions",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "union-fastapi-mongo",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          },
          {
            "name": "union-plugin-architecture",
            "collaborators": {
              "pageInfo": {
                "hasNextPage": false,
                "startCursor": null
              },
              "nodes": []
            }
          }
        ]
      }
    }
  }
dkrizic commented 6 months ago

Get contributions for a user

query {
    user(login:"ckoerner") {
    contributionsCollection(organizationID:"O_kgDOANDunw") {
      mostRecentCollectionWithoutActivity {
        startedAt
        endedAt
      }
      totalIssueContributions
      totalCommitContributions
      totalRepositoryContributions
      totalPullRequestContributions
      totalPullRequestReviewContributions
      totalRepositoriesWithContributedIssues
      totalRepositoriesWithContributedCommits
      totalRepositoriesWithContributedPullRequests
      totalRepositoriesWithContributedPullRequestReviews
      hasAnyContributions
      startedAt
      endedAt
      contributionYears
      contributionCalendar {
        weeks {
          firstDay
          contributionDays {
            date
            weekday
          }
        }
        months {
          name
          year
          firstDay
        }
      }
    }
  }
}

gives

{
  "data": {
    "user": {
      "contributionsCollection": {
        "mostRecentCollectionWithoutActivity": {
          "startedAt": "2023-03-11T23:00:00Z",
          "endedAt": "2024-03-12T22:59:59Z"
        },
        "totalIssueContributions": 0,
        "totalCommitContributions": 0,
        "totalRepositoryContributions": 0,
        "totalPullRequestContributions": 0,
        "totalPullRequestReviewContributions": 0,
        "totalRepositoriesWithContributedIssues": 0,
        "totalRepositoriesWithContributedCommits": 0,
        "totalRepositoriesWithContributedPullRequests": 0,
        "totalRepositoriesWithContributedPullRequestReviews": 0,
        "hasAnyContributions": false,
        "startedAt": "2023-03-11T23:00:00Z",
        "endedAt": "2024-03-12T22:59:59Z",
        "contributionYears": [
          2024,
          2023,
          2022,
          2021,
          2020,
          2019,
          2018,
          2017,
          2016,
          2015,
          2014,
          2013,
          2012,
          2011,
          2010
        ],
        "contributionCalendar": {
          "weeks": [
            {
              "firstDay": "2023-03-12",
              "contributionDays": [
                {
                  "date": "2023-03-12T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2023-03-13T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2023-03-14T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2023-03-15T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2023-03-16T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2023-03-17T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2023-03-18T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2023-03-19",
              "contributionDays": [
                {
                  "date": "2023-03-19T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2023-03-20T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2023-03-21T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2023-03-22T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2023-03-23T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2023-03-24T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2023-03-25T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2023-03-26",
              "contributionDays": [
                {
                  "date": "2023-03-26T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2023-03-27T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2023-03-28T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2023-03-29T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2023-03-30T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2023-03-31T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2023-04-01T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2023-04-02",
              "contributionDays": [
                {
                  "date": "2023-04-02T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2023-04-03T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2023-04-04T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2023-04-05T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2023-04-06T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2023-04-07T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2023-04-08T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2023-04-09",
              "contributionDays": [
                {
                  "date": "2023-04-09T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2023-04-10T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2023-04-11T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2023-04-12T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2023-04-13T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2023-04-14T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2023-04-15T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2023-04-16",
              "contributionDays": [
                {
                  "date": "2023-04-16T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2023-04-17T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2023-04-18T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2023-04-19T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2023-04-20T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2023-04-21T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2023-04-22T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2023-04-23",
              "contributionDays": [
                {
                  "date": "2023-04-23T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2023-04-24T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2023-04-25T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2023-04-26T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2023-04-27T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2023-04-28T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2023-04-29T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2023-04-30",
              "contributionDays": [
                {
                  "date": "2023-04-30T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2023-05-01T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2023-05-02T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2023-05-03T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2023-05-04T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2023-05-05T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2023-05-06T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2023-05-07",
              "contributionDays": [
                {
                  "date": "2023-05-07T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2023-05-08T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2023-05-09T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2023-05-10T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2023-05-11T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2023-05-12T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2023-05-13T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2023-05-14",
              "contributionDays": [
                {
                  "date": "2023-05-14T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2023-05-15T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2023-05-16T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2023-05-17T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2023-05-18T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2023-05-19T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2023-05-20T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2023-05-21",
              "contributionDays": [
                {
                  "date": "2023-05-21T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2023-05-22T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2023-05-23T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2023-05-24T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2023-05-25T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2023-05-26T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2023-05-27T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2023-05-28",
              "contributionDays": [
                {
                  "date": "2023-05-28T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2023-05-29T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2023-05-30T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2023-05-31T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2023-06-01T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2023-06-02T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2023-06-03T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2023-06-04",
              "contributionDays": [
                {
                  "date": "2023-06-04T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2023-06-05T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2023-06-06T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2023-06-07T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2023-06-08T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2023-06-09T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2023-06-10T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2023-06-11",
              "contributionDays": [
                {
                  "date": "2023-06-11T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2023-06-12T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2023-06-13T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2023-06-14T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2023-06-15T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2023-06-16T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2023-06-17T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2023-06-18",
              "contributionDays": [
                {
                  "date": "2023-06-18T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2023-06-19T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2023-06-20T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2023-06-21T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2023-06-22T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2023-06-23T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2023-06-24T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2023-06-25",
              "contributionDays": [
                {
                  "date": "2023-06-25T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2023-06-26T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2023-06-27T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2023-06-28T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2023-06-29T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2023-06-30T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2023-07-01T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2023-07-02",
              "contributionDays": [
                {
                  "date": "2023-07-02T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2023-07-03T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2023-07-04T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2023-07-05T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2023-07-06T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2023-07-07T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2023-07-08T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2023-07-09",
              "contributionDays": [
                {
                  "date": "2023-07-09T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2023-07-10T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2023-07-11T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2023-07-12T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2023-07-13T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2023-07-14T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2023-07-15T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2023-07-16",
              "contributionDays": [
                {
                  "date": "2023-07-16T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2023-07-17T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2023-07-18T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2023-07-19T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2023-07-20T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2023-07-21T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2023-07-22T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2023-07-23",
              "contributionDays": [
                {
                  "date": "2023-07-23T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2023-07-24T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2023-07-25T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2023-07-26T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2023-07-27T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2023-07-28T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2023-07-29T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2023-07-30",
              "contributionDays": [
                {
                  "date": "2023-07-30T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2023-07-31T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2023-08-01T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2023-08-02T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2023-08-03T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2023-08-04T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2023-08-05T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2023-08-06",
              "contributionDays": [
                {
                  "date": "2023-08-06T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2023-08-07T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2023-08-08T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2023-08-09T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2023-08-10T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2023-08-11T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2023-08-12T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2023-08-13",
              "contributionDays": [
                {
                  "date": "2023-08-13T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2023-08-14T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2023-08-15T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2023-08-16T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2023-08-17T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2023-08-18T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2023-08-19T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2023-08-20",
              "contributionDays": [
                {
                  "date": "2023-08-20T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2023-08-21T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2023-08-22T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2023-08-23T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2023-08-24T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2023-08-25T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2023-08-26T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2023-08-27",
              "contributionDays": [
                {
                  "date": "2023-08-27T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2023-08-28T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2023-08-29T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2023-08-30T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2023-08-31T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2023-09-01T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2023-09-02T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2023-09-03",
              "contributionDays": [
                {
                  "date": "2023-09-03T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2023-09-04T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2023-09-05T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2023-09-06T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2023-09-07T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2023-09-08T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2023-09-09T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2023-09-10",
              "contributionDays": [
                {
                  "date": "2023-09-10T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2023-09-11T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2023-09-12T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2023-09-13T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2023-09-14T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2023-09-15T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2023-09-16T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2023-09-17",
              "contributionDays": [
                {
                  "date": "2023-09-17T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2023-09-18T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2023-09-19T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2023-09-20T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2023-09-21T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2023-09-22T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2023-09-23T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2023-09-24",
              "contributionDays": [
                {
                  "date": "2023-09-24T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2023-09-25T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2023-09-26T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2023-09-27T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2023-09-28T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2023-09-29T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2023-09-30T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2023-10-01",
              "contributionDays": [
                {
                  "date": "2023-10-01T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2023-10-02T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2023-10-03T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2023-10-04T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2023-10-05T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2023-10-06T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2023-10-07T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2023-10-08",
              "contributionDays": [
                {
                  "date": "2023-10-08T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2023-10-09T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2023-10-10T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2023-10-11T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2023-10-12T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2023-10-13T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2023-10-14T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2023-10-15",
              "contributionDays": [
                {
                  "date": "2023-10-15T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2023-10-16T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2023-10-17T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2023-10-18T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2023-10-19T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2023-10-20T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2023-10-21T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2023-10-22",
              "contributionDays": [
                {
                  "date": "2023-10-22T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2023-10-23T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2023-10-24T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2023-10-25T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2023-10-26T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2023-10-27T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2023-10-28T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2023-10-29",
              "contributionDays": [
                {
                  "date": "2023-10-29T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2023-10-30T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2023-10-31T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2023-11-01T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2023-11-02T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2023-11-03T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2023-11-04T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2023-11-05",
              "contributionDays": [
                {
                  "date": "2023-11-05T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2023-11-06T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2023-11-07T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2023-11-08T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2023-11-09T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2023-11-10T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2023-11-11T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2023-11-12",
              "contributionDays": [
                {
                  "date": "2023-11-12T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2023-11-13T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2023-11-14T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2023-11-15T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2023-11-16T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2023-11-17T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2023-11-18T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2023-11-19",
              "contributionDays": [
                {
                  "date": "2023-11-19T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2023-11-20T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2023-11-21T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2023-11-22T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2023-11-23T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2023-11-24T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2023-11-25T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2023-11-26",
              "contributionDays": [
                {
                  "date": "2023-11-26T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2023-11-27T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2023-11-28T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2023-11-29T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2023-11-30T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2023-12-01T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2023-12-02T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2023-12-03",
              "contributionDays": [
                {
                  "date": "2023-12-03T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2023-12-04T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2023-12-05T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2023-12-06T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2023-12-07T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2023-12-08T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2023-12-09T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2023-12-10",
              "contributionDays": [
                {
                  "date": "2023-12-10T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2023-12-11T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2023-12-12T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2023-12-13T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2023-12-14T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2023-12-15T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2023-12-16T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2023-12-17",
              "contributionDays": [
                {
                  "date": "2023-12-17T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2023-12-18T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2023-12-19T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2023-12-20T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2023-12-21T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2023-12-22T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2023-12-23T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2023-12-24",
              "contributionDays": [
                {
                  "date": "2023-12-24T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2023-12-25T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2023-12-26T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2023-12-27T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2023-12-28T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2023-12-29T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2023-12-30T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2023-12-31",
              "contributionDays": [
                {
                  "date": "2023-12-31T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2024-01-01T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2024-01-02T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2024-01-03T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2024-01-04T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2024-01-05T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2024-01-06T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2024-01-07",
              "contributionDays": [
                {
                  "date": "2024-01-07T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2024-01-08T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2024-01-09T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2024-01-10T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2024-01-11T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2024-01-12T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2024-01-13T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2024-01-14",
              "contributionDays": [
                {
                  "date": "2024-01-14T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2024-01-15T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2024-01-16T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2024-01-17T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2024-01-18T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2024-01-19T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2024-01-20T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2024-01-21",
              "contributionDays": [
                {
                  "date": "2024-01-21T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2024-01-22T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2024-01-23T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2024-01-24T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2024-01-25T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2024-01-26T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2024-01-27T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2024-01-28",
              "contributionDays": [
                {
                  "date": "2024-01-28T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2024-01-29T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2024-01-30T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2024-01-31T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2024-02-01T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2024-02-02T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2024-02-03T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2024-02-04",
              "contributionDays": [
                {
                  "date": "2024-02-04T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2024-02-05T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2024-02-06T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2024-02-07T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2024-02-08T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2024-02-09T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2024-02-10T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2024-02-11",
              "contributionDays": [
                {
                  "date": "2024-02-11T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2024-02-12T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2024-02-13T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2024-02-14T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2024-02-15T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2024-02-16T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2024-02-17T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2024-02-18",
              "contributionDays": [
                {
                  "date": "2024-02-18T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2024-02-19T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2024-02-20T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2024-02-21T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2024-02-22T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2024-02-23T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2024-02-24T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2024-02-25",
              "contributionDays": [
                {
                  "date": "2024-02-25T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2024-02-26T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2024-02-27T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2024-02-28T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2024-02-29T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2024-03-01T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2024-03-02T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2024-03-03",
              "contributionDays": [
                {
                  "date": "2024-03-03T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2024-03-04T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2024-03-05T00:00:00.000+00:00",
                  "weekday": 2
                },
                {
                  "date": "2024-03-06T00:00:00.000+00:00",
                  "weekday": 3
                },
                {
                  "date": "2024-03-07T00:00:00.000+00:00",
                  "weekday": 4
                },
                {
                  "date": "2024-03-08T00:00:00.000+00:00",
                  "weekday": 5
                },
                {
                  "date": "2024-03-09T00:00:00.000+00:00",
                  "weekday": 6
                }
              ]
            },
            {
              "firstDay": "2024-03-10",
              "contributionDays": [
                {
                  "date": "2024-03-10T00:00:00.000+00:00",
                  "weekday": 0
                },
                {
                  "date": "2024-03-11T00:00:00.000+00:00",
                  "weekday": 1
                },
                {
                  "date": "2024-03-12T00:00:00.000+00:00",
                  "weekday": 2
                }
              ]
            }
          ],
          "months": [
            {
              "name": "Mar",
              "year": 2023,
              "firstDay": "2023-03-01"
            },
            {
              "name": "Apr",
              "year": 2023,
              "firstDay": "2023-04-01"
            },
            {
              "name": "May",
              "year": 2023,
              "firstDay": "2023-05-01"
            },
            {
              "name": "Jun",
              "year": 2023,
              "firstDay": "2023-06-01"
            },
            {
              "name": "Jul",
              "year": 2023,
              "firstDay": "2023-07-01"
            },
            {
              "name": "Aug",
              "year": 2023,
              "firstDay": "2023-08-01"
            },
            {
              "name": "Sep",
              "year": 2023,
              "firstDay": "2023-09-01"
            },
            {
              "name": "Oct",
              "year": 2023,
              "firstDay": "2023-10-01"
            },
            {
              "name": "Nov",
              "year": 2023,
              "firstDay": "2023-11-01"
            },
            {
              "name": "Dec",
              "year": 2023,
              "firstDay": "2023-12-01"
            },
            {
              "name": "Jan",
              "year": 2024,
              "firstDay": "2024-01-01"
            },
            {
              "name": "Feb",
              "year": 2024,
              "firstDay": "2024-02-01"
            },
            {
              "name": "Mar",
              "year": 2024,
              "firstDay": "2024-03-01"
            }
          ]
        }
      }
    }
  }
}