Skip to content

Latest commit

 

History

History
30 lines (27 loc) · 535 Bytes

README.md

File metadata and controls

30 lines (27 loc) · 535 Bytes

active-forks

Might turn it into an app

Query I use to get the last active fork of an unmaintained project. Try it ouy in the github graphql explorer

query { 
  repository(
    owner: "gabrielmoncea"
    name: "react-native-template"
  ) {
    name
    forkCount
    forks(
      first: 25
      orderBy: { field: PUSHED_AT, direction: DESC }
    ) {
      totalCount
      nodes {
        url
        licenseInfo{
          name
        }
      }
    }
  }
}