Skip to content

Commit

Permalink
docs: Set page anchor name for groupby
Browse files Browse the repository at this point in the history
  • Loading branch information
ntucker committed Aug 5, 2024
1 parent e29d1a5 commit 62ff684
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/rest/api/Query.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ render(<UsersPage />);

</HooksPlayground>

### Rearranging data with groupBy aggregations
### Rearranging data with groupBy aggregations {#groupby}

<HooksPlayground>

Expand Down Expand Up @@ -198,7 +198,7 @@ function TodosPage() {
if (!todosByUser) return <div>Todos not found</div>;
return (
<div>
{Object.keys(todosByUser).map(userId => (
{Object.keys(todosByUser).slice(5).map(userId => (
<TodoByUser
key={userId}
userId={userId}
Expand Down

0 comments on commit 62ff684

Please sign in to comment.