How can I find the created date of a project on GitHub?
Basically, I have to find the first commit to see the created date, however, some projects have 500 commits, whi
You can also use Github's new GraphQL API:
query { repository(owner: "graphql", name: "graphql-js") { name createdAt } }