aboutsummaryrefslogtreecommitdiff
path: root/xtask/src/codegen/last_commit_that_affected_path.graphql
diff options
context:
space:
mode:
Diffstat (limited to 'xtask/src/codegen/last_commit_that_affected_path.graphql')
-rw-r--r--xtask/src/codegen/last_commit_that_affected_path.graphql17
1 files changed, 0 insertions, 17 deletions
diff --git a/xtask/src/codegen/last_commit_that_affected_path.graphql b/xtask/src/codegen/last_commit_that_affected_path.graphql
deleted file mode 100644
index 8b256f392..000000000
--- a/xtask/src/codegen/last_commit_that_affected_path.graphql
+++ /dev/null
@@ -1,17 +0,0 @@
1query LastCommitThatAffectedPath($owner: String!, $name: String!, $path: String!) {
2 repository(owner: $owner, name: $name) {
3 object(expression: "master") {
4 __typename
5 ... on Commit {
6 history(path: $path, first:1) {
7 edges {
8 node {
9 commitUrl
10 committedDate
11 }
12 }
13 }
14 }
15 }
16 }
17} \ No newline at end of file