github-tui/bin/main.ml
2024-03-23 10:26:12 +00:00

21 lines
353 B
OCaml

(*
let () = print_endline @@ Github_tui.Gh.query
{|
query {
repository(owner: "chshersh", name: "zbg") {
issues(last: 2, states: [OPEN], orderBy: {field: CREATED_AT, direction: DESC}) {
nodes {
number
title
author {
login
}
}
}
}
}
|}
*)
let () = Github_tui.Main.main ()