How to scroll to specific element on iOS real app using Appium javascript

I have used below code in Nightwatch javascript which is not working correctly.
.perform(function(){
const actions = this.actions();
return actions.move({x: 100, y: 500}).press().move({origin: ‘pointer’, y: -70, duration: 50}).release();
})

Please suggest with better solution.

Thanks