sort record by number in firestore
How can I make the record sort in ascending order by number?
this is my code
getPosts() { this.firestoreService.getCollection<Post>(this.path).subscribe( res => { this.posts = res; }); }