-
Notifications
You must be signed in to change notification settings - Fork 304
Labels
GoPHPPythonRubyTypeScriptPull requests that update Javascript codePull requests that update Javascript codeWIPgeneratorIssues or improvements relater to generation capabilities.Issues or improvements relater to generation capabilities.javascriptPull requests that update Javascript codePull requests that update Javascript code
Milestone
Description
Currently, in C# we do the following:
client.Repos["owner"]["repo"].Pulls.GetAsync();
And it gets translated to something like this in other languages:
client.ReposByOwner("owner").ByRepo("repo").Get();
Though, we believe it would be a better experience to have it within the Repos request builder vs. as part of the root of the clent like this:
client.Repos.ByOwner("owner").ByRepo("repo").Get();
This would be a breaking change if we implement this change.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
GoPHPPythonRubyTypeScriptPull requests that update Javascript codePull requests that update Javascript codeWIPgeneratorIssues or improvements relater to generation capabilities.Issues or improvements relater to generation capabilities.javascriptPull requests that update Javascript codePull requests that update Javascript code
Type
Projects
Status
Done ✔️