You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
500 B
39 lines
500 B
export interface CommitHistory {
|
|
data: Data;
|
|
}
|
|
|
|
export interface Data {
|
|
repository: Repository;
|
|
}
|
|
|
|
export interface Repository {
|
|
ref: Ref;
|
|
}
|
|
|
|
export interface Ref {
|
|
name: string;
|
|
target: Target;
|
|
}
|
|
|
|
export interface Target {
|
|
history: History;
|
|
}
|
|
|
|
export interface History {
|
|
edges: Edge[];
|
|
}
|
|
|
|
export interface Edge {
|
|
node: Node;
|
|
}
|
|
|
|
export interface Node {
|
|
abbreviatedOid: string;
|
|
message: string;
|
|
author: Author;
|
|
}
|
|
|
|
export interface Author {
|
|
avatarUrl: string;
|
|
name: string;
|
|
}
|
|
|