Skip to content

Fixed Markdown formatting and spelling#9129

Merged
glen-84 merged 2 commits intomainfrom
gai/fix-formatting-and-spelling
Feb 18, 2026
Merged

Fixed Markdown formatting and spelling#9129
glen-84 merged 2 commits intomainfrom
gai/fix-formatting-and-spelling

Conversation

@glen-84
Copy link
Copy Markdown
Member

@glen-84 glen-84 commented Feb 18, 2026

Summary of the changes (Less than 80 chars)

  • Fixed Markdown formatting and spelling.

Copilot AI review requested due to automatic review settings February 18, 2026 08:05
@github-actions github-actions Bot added the 📚 documentation This issue is about working on our documentation. label Feb 18, 2026
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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.txt with 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.

Comment thread website/src/docs/fusion/v16/index.md Outdated
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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.

@glen-84 glen-84 merged commit 7885e35 into main Feb 18, 2026
123 checks passed
@glen-84 glen-84 deleted the gai/fix-formatting-and-spelling branch February 18, 2026 08:21
@github-actions
Copy link
Copy Markdown
Contributor

🚀 Fusion Gateway Performance Results

Simple Composite Query

Constant Load (50 VUs)

Requests/sec Error Rate
2888.69 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.76ms 15.31ms 173.31ms 17.09ms 31.09ms 36.20ms

Ramping Load (0→50→500→50 VUs)

Requests/sec Error Rate
3210.15 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.68ms 67.94ms 265.68ms 69.42ms 129.64ms 146.74ms

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 Query

Constant Load (50 VUs)

Requests/sec Error Rate
745.14 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
8.84ms 62.78ms 351.18ms 65.59ms 81.50ms 89.58ms

Ramping Load (0→50→500→50 VUs)

Requests/sec Error Rate
817.29 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
1.82ms 250.19ms 722.33ms 262.80ms 530.74ms 570.06ms

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 Throughput

Constant Load (50 VUs)

Requests/sec Error Rate
23167.90 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.10ms 1.75ms 41.94ms 2.11ms 4.01ms 4.90ms

Ramping Load (0→50→500→50 VUs)

Requests/sec Error Rate
18427.19 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.10ms 9.33ms 98.85ms 11.43ms 23.69ms 28.48ms

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

📚 documentation This issue is about working on our documentation.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants