Reputation: 1
I am new to version controlling and managing. I am in a situation where my current application is published and users are using it. We have a new version, which we want to submit for review but for that we need to upload new version of backend to cloud and it wont work for older version and if we wont upload newe version then it wont work for reviewer.
How to resolve this issue ? Or Better implementation suggestions. Thank you
FrontEnd:- ReactNative Backend:- Node and Express Query Language for API: GraphQL Cloud: Microsoft Azure.
Dont know how to resolve this
Upvotes: 0
Views: 652
Reputation: 6394
ok. for this. you have solution. you have to create a new api with v2 and run it. same put a static value on backend and Front-End for example
APP_VERSION = 1.
Now Create an API where it we'll get version from backend. if version number or different the show a message to user that please update the application.
for example. if we have uploaded new version to backend
APP_VERSION = 1.1
and user have app with
APP_VERIOSN 1.1
then show a message that please update to latest version
Upvotes: 0