Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- URL: https://api.github.com/graphql
- Encoding: UTF-8
- {"query":"query {
- viewer {
- id
- topRepositories (orderBy: {direction: ASC, field: UPDATED_AT}, first: 100) {
- pageInfo {
- hasNextPage
- endCursor
- }
- nodes {
- ... on Repository {
- id
- name
- url
- sshUrl
- owner {
- login
- }
- defaultBranchRef {
- name
- }
- parent {
- name
- owner {
- login
- }
- }
- }
- }
- }
- repositories (affiliations: [OWNER, ORGANIZATION_MEMBER, COLLABORATOR], first: 100) {
- pageInfo {
- hasNextPage
- endCursor
- }
- nodes {
- ... on Repository {
- id
- name
- url
- sshUrl
- owner {
- login
- }
- defaultBranchRef {
- name
- }
- parent {
- name
- owner {
- login
- }
- }
- }
- }
- }
- organizations (first: 100) {
- pageInfo {
- hasNextPage
- endCursor
- }
- nodes {
- ... on Organization {
- id
- repositories (first: 100) {
- pageInfo {
- hasNextPage
- endCursor
- }
- nodes {
- ... on Repository {
- id
- name
- url
- sshUrl
- owner {
- login
- }
- defaultBranchRef {
- name
- }
- parent {
- name
- owner {
- login
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- "}
Advertisement
Add Comment
Please, Sign In to add comment