Skip to content

Commit 14c7fcd

Browse files
Update docs/explanation/get-vs-post.md
Co-authored-by: Alex Moon <[email protected]>
1 parent 3f978b4 commit 14c7fcd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docs/explanation/get-vs-post.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ WPGraphQL supports querying data using the `/graphql` endpoint in two primary wa
1515
```bash
1616
curl 'http://myexample.local/graphql?query={generalSettings{url}}'
1717
```
18-
**Note**: GET requests have inherent URL length limitations (typically 2,000-8,000 characters depending on the browser and server). Complex GraphQL queries can easily exceed these limits, making this method impractical for anything beyond basic queries.
18+
> [!IMPORTANT]
19+
GET requests have inherent URL length limitations (typically 2,000-8,000 characters depending on the browser and server). Complex GraphQL queries can easily exceed these limits, making this method impractical for anything beyond basic queries.
1920

2021
Each property is provided as an HTTP query parameter, with values separated by an ampersand (&).
2122

0 commit comments

Comments
 (0)