shurcooL / githubv4

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

Regenerate schema for changes by 2021-09-20 #89

Closed bluekeyes closed 2 years ago

bluekeyes commented 2 years ago

Updating the schema to have access to the new CreateCommitOnBranchInput type, along with other recent updates.

This introduces a new scalar type, Base64String. For now, I implemented this as a normal string, although I can see an argument for having it be a []byte instead that automatically encodes/decodes the base64 content when marshalling/unmarshalling. If that seems preferable, I can update this PR.

bluekeyes commented 2 years ago

Thank you for fixing up Base64String - the changes make sense to me and I agree that a plain string will work fine for now.