You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This affects JavaScript, but probably other languages.
As we are mirroring the indexer behavior of C# (client.Users[id].Get()), it seems that we have hoisted the indexers up in the parent request builders like this:
client.usersById(id).get() versus something that feels more natural like client.users.byId(id).get(). This would also clean the available properties at every level of the request builder chain.
The text was updated successfully, but these errors were encountered:
This affects JavaScript, but probably other languages.
As we are mirroring the indexer behavior of C# (
client.Users[id].Get()
), it seems that we have hoisted the indexers up in the parent request builders like this:client.usersById(id).get()
versus something that feels more natural likeclient.users.byId(id).get()
. This would also clean the available properties at every level of the request builder chain.The text was updated successfully, but these errors were encountered: