7 lines
230 B
GraphQL
7 lines
230 B
GraphQL
#import "ee_else_ce/repository/queries/commit.fragment.graphql"
|
|
|
|
query getCommit($fileName: String!, $type: String!, $path: String!) {
|
|
commit(path: $path, fileName: $fileName, type: $type) @client {
|
|
...TreeEntryCommit
|
|
}
|
|
}
|