Is there a way in redux-saga to only fetch one time during for example in 5 seconds?
I know that there's debounce function:
yield debounce(5000, 'SAMPLE_ACTION', actionToFetchFirst)
but what I want is for it to fetch first rather than waiting for 5 seconds for initial fetch