Graph cannot notify your mobile app directly. If you want Graph to proactively notify your app of a change, you have to either stand up a web service to receive a POST from Graph (typically referred to as a webhook) and then work out some method to have your web service notify your mobile app, or you have to setup an Azure event hub and devise some method for the event hub to notify back to your mobile app.
Alternatively, you could instead just have your mobile app use change tracking, making periodic calls to Graph to get any changes since the last call.