Conversation
There was a problem hiding this comment.
Pull request overview
This PR standardizes Markdown formatting across the Fusion v16 docs (tables, code samples, spacing) and updates the repo dictionary to accommodate project-specific terms.
Changes:
- Reformat Markdown tables in multiple docs to use consistent, valid pipe-table syntax.
- Tweak code sample formatting (GraphQL directive wrapping, JSON/YAML styling) and add spacing for readability.
- Extend
dictionary.txtwith additional allowed terms.
Reviewed changes
Copilot reviewed 10 out of 10 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| website/src/docs/fusion/v16/nitro-cli-reference.md | Converts option tables to consistent pipe-table formatting. |
| website/src/docs/fusion/v16/migrating-from-schema-stitching.md | Reformats the concepts table and improves readability of @delegate examples. |
| website/src/docs/fusion/v16/index.md | Adds Prettier-ignore markers around a GraphQL example and reformats the terminology table. |
| website/src/docs/fusion/v16/getting-started.md | Minor Markdown emphasis tweak and JSON example compaction. |
| website/src/docs/fusion/v16/entities-and-lookups.md | Adds spacing between list lead-ins and bullet lists for readability. |
| website/src/docs/fusion/v16/deployment-and-ci-cd.md | Adds spacing before lists/headings and normalizes quoting in a YAML snippet. |
| website/src/docs/fusion/v16/composition.md | Normalizes table formatting and expands enum examples to multi-line blocks. |
| website/src/docs/fusion/v16/coming-from-apollo-federation.md | Reformats mapping tables to consistent pipe-table formatting. |
| website/src/docs/fusion/v16/attribute-and-directive-reference.md | Reformats the reference table to consistent pipe-table formatting. |
| dictionary.txt | Adds new allowed spellings/terms used in docs. |
💡 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 10 out of 10 changed files in this pull request and generated no new comments.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
🚀 Fusion Gateway Performance ResultsSimple Composite QueryConstant Load (50 VUs)
📊 Response Time Metrics
Ramping Load (0→50→500→50 VUs)
📊 Response Time Metrics
Executed Query fragment User on User {
id
username
name
}
fragment Review on Review {
id
body
}
fragment Product on Product {
inStock
name
price
shippingEstimate
upc
weight
}
query TestQuery {
topProducts(first: 5) {
...Product
reviews {
...Review
author {
...User
}
}
}
}Deep Recursion QueryConstant Load (50 VUs)
📊 Response Time Metrics
Ramping Load (0→50→500→50 VUs)
📊 Response Time Metrics
Executed Query fragment User on User {
id
username
name
}
fragment Review on Review {
id
body
}
fragment Product on Product {
inStock
name
price
shippingEstimate
upc
weight
}
query TestQuery {
users {
...User
reviews {
...Review
product {
...Product
reviews {
...Review
author {
...User
reviews {
...Review
product {
...Product
}
}
}
}
}
}
}
topProducts(first: 5) {
...Product
reviews {
...Review
author {
...User
reviews {
...Review
product {
...Product
}
}
}
}
}
}Variable Batching ThroughputConstant Load (50 VUs)
📊 Response Time Metrics
Ramping Load (0→50→500→50 VUs)
📊 Response Time Metrics
Executed Query query TestQuery_8f7a46ce_2(
$__fusion_1_upc: ID!
$__fusion_2_price: Long!
$__fusion_2_weight: Long!
) {
productByUpc(upc: $__fusion_1_upc) {
inStock
shippingEstimate(weight: $__fusion_2_weight, price: $__fusion_2_price)
}
}Variables (5 sets batched in single request) [
{ "__fusion_1_upc": "1", "__fusion_2_price": 899, "__fusion_2_weight": 100 },
{ "__fusion_1_upc": "2", "__fusion_2_price": 1299, "__fusion_2_weight": 1000 },
{ "__fusion_1_upc": "3", "__fusion_2_price": 15, "__fusion_2_weight": 20 },
{ "__fusion_1_upc": "4", "__fusion_2_price": 499, "__fusion_2_weight": 100 },
{ "__fusion_1_upc": "5", "__fusion_2_price": 1299, "__fusion_2_weight": 1000 }
]No baseline data available for comparison. Run 22131834497 • Commit 7a115ef • Wed, 18 Feb 2026 08:33:07 GMT |
Summary of the changes (Less than 80 chars)