github-tui/bin/main.ml
Dmitrii Kovanikov 06f9cf2b45 WIP: Add CLI
2024-01-07 12:57:16 +00:00

20 lines
352 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 ()