Skip to content

Commit 62ff684

Browse files
committed
docs: Set page anchor name for groupby
1 parent e29d1a5 commit 62ff684

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/rest/api/Query.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ render(<UsersPage />);
9898

9999
</HooksPlayground>
100100

101-
### Rearranging data with groupBy aggregations
101+
### Rearranging data with groupBy aggregations {#groupby}
102102

103103
<HooksPlayground>
104104

@@ -198,7 +198,7 @@ function TodosPage() {
198198
if (!todosByUser) return <div>Todos not found</div>;
199199
return (
200200
<div>
201-
{Object.keys(todosByUser).map(userId => (
201+
{Object.keys(todosByUser).slice(5).map(userId => (
202202
<TodoByUser
203203
key={userId}
204204
userId={userId}

0 commit comments

Comments
 (0)