Files
openide/plugins/github/resources/graphql/query/unmarkFileAsViewed.graphql
Konstantin Kolosovsky 8579687a43 [github] Add "Mark as Viewed" / "Mark as Not Viewed" actions to pull request files tree (IDEA-242846)
GitOrigin-RevId: 7621ad2b68591999f956db8b172090dd0bd641f5
2021-10-17 20:13:59 +00:00

5 lines
155 B
GraphQL

mutation ($pullRequestId: ID!, $path: String!) {
unmarkFileAsViewed(input: { pullRequestId: $pullRequestId, path: $path }) {
__typename
}
}