shurcooL / githubv4

Package githubv4 is a client library for accessing GitHub GraphQL API v4 (https://docs.github.com/en/graphql).
MIT License
1.13k stars 90 forks source link

Roadmap. #22

Open dmitshur opened 7 years ago

dmitshur commented 7 years ago

This issue provides a rough roadmap to give you an idea of the development status, and the remaining planned work.

Roadmap

Currently Implemented

Future

Known Unknowns

dmitshur commented 6 years ago

Good news, I've just checked off the following box:

  • [x] Directives (haven't tested yet, but expect it to be supported).

I've tested GraphQL directives and they work well with githubql. They're actually quite handy for some queries.

(In my situation, I wanted to get all comments of an issue, including the issue description, while performing pagination, but only get the issue comment on the first page. Directives made it easy to only get the issue description on the first page of results. See https://github.com/shurcooL/issues/commit/36fff28db4d1f8abcc8bce30659f0ad759331307, grep for firstPage in that commit.)