Skip to content

Commit 4dde8e9

Browse files
veelengasivakumar-kailasam
authored andcommitted
Correct the link to store.peekAll() method
1 parent 1b8c100 commit 4dde8e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

guides/v3.4.0/models/finding-records.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ this.store.findAll('blog-post') // => GET /blog-posts
3232
});
3333
```
3434

35-
Use [`store.peekAll()`](http://emberjs.com/api/data/classes/DS.Store.html#method_peekAll) to retrieve all of the records for a given type that are already loaded into the store, without making a network request:
35+
Use [`store.peekAll()`](https://www.emberjs.com/api/ember-data/release/classes/DS.Store/methods/findAll?anchor=peekAll) to retrieve all of the records for a given type that are already loaded into the store, without making a network request:
3636

3737
```javascript
3838
let blogPosts = this.store.peekAll('blog-post'); // => no network request

0 commit comments

Comments
 (0)