We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Supose I call a "user contacts" API in my app, the BE sends this. The keys here we decided by the frontend person for ease in frontend code.
{ id: 59, name: "John Doe", email: "abcdefgmail.com", phone: null }
but it expects the following for a PUT/POST. It expects this because it uses the keys (below) internally in BE
{ id: 59, name: "John Doe", email_address: "abcdefgmail.com", phone_number: null }
Now whotf is going to manage this synching? This is bad design, and it's not complex bad either.
whats the fix here?
The text was updated successfully, but these errors were encountered:
sanjarcode
No branches or pull requests
Supose I call a "user contacts" API in my app, the BE sends this.
The keys here we decided by the frontend person for ease in frontend code.
but it expects the following for a PUT/POST. It expects this because it uses the keys (below) internally in BE
problem
Now whotf is going to manage this synching?
This is bad design, and it's not complex bad either.
fix
whats the fix here?
The text was updated successfully, but these errors were encountered: