Closed xaun closed 6 years ago
.all().subscribe( () => console.log('onNext'), null, () => console.log('completed') ); /* output: onNext completed */
with ttl (on second load, once the cachestore is set):
.all({ ttl: 300 }).subscribe( () => console.log('onNext'), null, () => console.log('completed') ); /* output: onNext */
wich version are you ussing? I think this problem was solved: https://github.com/reyesoft/ngx-jsonapi/blob/v2.0/src/service.ts#L205
@pablorsk 1.1.1, so ok, I guess you can close it then
with ttl (on second load, once the cachestore is set):