Conversation
There was a problem hiding this comment.
Pull request overview
This pull request improves the StrawberryShake documentation by updating scalar type descriptions, modernizing code examples, removing deprecated Xamarin content from v16, and improving consistency across documentation files. The changes enhance clarity, fix grammatical issues, and update command-line parameter syntax to use long-form flags.
Changes:
- Expanded scalar type documentation with comprehensive descriptions and links to specifications
- Removed Xamarin tutorial from v16 documentation (as Xamarin is deprecated)
- Modernized console application examples to use C# top-level statements
- Updated command-line parameters to use long-form syntax (
--name,--clientName,--Path) - Replaced PNG images with WebP format for better compression
- Reordered navigation structure to move Xamarin to the end in older versions
Reviewed changes
Copilot reviewed 5 out of 9 changed files in this pull request and generated 6 comments.
Show a summary per file
| File | Description |
|---|---|
| website/src/docs/strawberryshake/v16/scalars.md | Expanded scalar type table with detailed descriptions, links to specifications, and additional scalar types |
| website/src/docs/strawberryshake/v16/get-started/xamarin.md | Completely removed Xamarin tutorial for v16 as it's deprecated |
| website/src/docs/strawberryshake/v16/get-started/index.md | Updated CLI command parameters and fixed spelling (cryptocurrencies, Visual Studio Code) |
| website/src/docs/strawberryshake/v16/get-started/console.md | Modernized code examples with top-level statements, updated CLI parameters, added configuration options |
| website/src/docs/shared/berry_console_session_list.webp | Added WebP image replacing PNG version |
| website/src/docs/shared/berry_console_generated.webp | Added WebP image (binary file) |
| website/src/docs/docs.json | Removed Xamarin from v16 get-started, reordered Xamarin to end for v15/v14/v13 versions |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 5 out of 9 changed files in this pull request and generated 6 comments.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Fusion Gateway Performance ResultsSimple Composite Query
Response Times & Query
query TestQuery {
topProducts(first: 5) {
inStock
name
price
shippingEstimate
upc
weight
reviews {
id
body
author {
id
username
name
}
}
}
}Deep Recursion Query
Response Times & Query
query TestQuery {
users {
id
username
name
reviews {
id
body
product {
inStock
name
price
shippingEstimate
upc
weight
reviews {
id
body
author {
id
username
name
reviews {
id
body
product {
inStock
name
price
shippingEstimate
upc
weight
}
}
}
}
}
}
}
topProducts(first: 5) {
inStock
name
price
shippingEstimate
upc
weight
reviews {
id
body
author {
id
username
name
reviews {
id
body
product {
inStock
name
price
shippingEstimate
upc
weight
}
}
}
}
}
}Variable Batching Throughput
Response Times & Query
query TestQuery($upc: ID!, $price: Long!, $weight: Long!) {
productByUpc(upc: $upc) {
inStock
shippingEstimate(weight: $weight, price: $price)
}
}Variables (5 sets batched per request) [
{ "upc": "1", "price": 899, "weight": 100 },
{ "upc": "2", "price": 1299, "weight": 1000 },
{ "upc": "3", "price": 15, "weight": 20 },
{ "upc": "4", "price": 499, "weight": 100 },
{ "upc": "5", "price": 1299, "weight": 1000 }
]Run 22183904928 • Commit f965e82 • Thu, 19 Feb 2026 14:09:26 GMT |
Summary of the changes (Less than 80 chars)