summaryrefslogtreecommitdiff
path: root/source/features/repo-age-first-commit.gql
blob: 77c9c21a1a4c8e5890d6e140a7c5bdc8866bef0c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
query GetFirstCommit($owner: String!, $name: String!) {
	repository(owner: $owner, name: $name) {
		defaultBranchRef {
			target {
				... on Commit {
					oid
					committedDate
					resourcePath
					history {
						totalCount
					}
				}
			}
		}
	}
}