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
The package only focuses on the presentation/ETL layer (how the response looks). It should also bring "up to date" a request at an older version.
Example:
POST /items at 2018-01-01 submits
POST /items
2018-01-01
{ "title": "foo" }
But at 2018-03-01 aka master
2018-03-01
master
{ "name": "foo" }
The package should convert title -> name, allow API to process the request, and then convert name -> title.
title
name
The text was updated successfully, but these errors were encountered:
Each action needs two parts, right? A migrate up and a migrate down
Sorry, something went wrong.
No branches or pull requests
The package only focuses on the presentation/ETL layer (how the response looks). It should also bring "up to date" a request at an older version.
Example:
POST /items
at2018-01-01
submitsBut at
2018-03-01
akamaster
The package should convert
title
->name
, allow API to process the request, and then convertname
->title
.The text was updated successfully, but these errors were encountered: