You can reload the current state using the $state.reload
method from your controller
$state.reload()
This is a shorthand for (code taken from the official docs)
$state.transitionTo($state.current, $stateParams, {
reload: true, inherit: false, notify: false
});
Running a reload on your state will also restart your controller/s and re-resolve all your resolved values.