summaryrefslogtreecommitdiff
path: root/source/features/previous-version.gql
blob: aee7220567bdea0d2aa5cc0edd24d81b49edcbf9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
query getPreviousCommitForFile($resource: URI!, $filePath: String!) {
	resource(url: $resource) {
		... on Commit {
			history(path: $filePath, first: 2) {
				nodes {
					oid
				}
			}
		}
	}
}