INPUT_OBJECT

CodeChangeInput

link GraphQL Schema definition

1input CodeChangeInput {
4
2# The file/folder path.
3path: String!
7
5# The change type can be 'added', 'deleted' or 'modified'.
6changeType: ChangeType!
10
8# The source code of the file.
9source: String
11}