Skip to content

Commit 0d98f37

Browse files
authored
Clarify ctx.query type on getServerSideProps (#20327)
Closes #19481 The current text implies `query` is a string. IMO it would be better if it clarified that `query` is an object containing the query string's keys and values Edit: Relevant docs url: https://nextjs.org/docs/basic-features/data-fetching#getserversideprops-server-side-rendering
1 parent 87c97fd commit 0d98f37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/basic-features/data-fetching.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -633,7 +633,7 @@ The `context` parameter is an object containing the following keys:
633633
- `params`: If this page uses a dynamic route, `params` contains the route parameters. If the page name is `[id].js` , then `params` will look like `{ id: ... }`. To learn more, take a look at the [Dynamic Routing documentation](/docs/routing/dynamic-routes.md).
634634
- `req`: [The HTTP IncomingMessage object](https://nodejs.org/api/http.html#http_class_http_incomingmessage).
635635
- `res`: [The HTTP response object](https://nodejs.org/api/http.html#http_class_http_serverresponse).
636-
- `query`: The query string.
636+
- `query`: An object representing the query string.
637637
- `preview`: `preview` is `true` if the page is in the preview mode and `false` otherwise. See the [Preview Mode documentation](/docs/advanced-features/preview-mode.md).
638638
- `previewData`: The preview data set by `setPreviewData`. See the [Preview Mode documentation](/docs/advanced-features/preview-mode.md).
639639
- `resolvedUrl`: A normalized version of the request URL that strips the `_next/data` prefix for client transitions and includes original query values.

0 commit comments

Comments
 (0)