Skip to content

Adds inaccessible support#8887

Merged
michaelstaib merged 9 commits intomainfrom
mst/inaccessible-support
Nov 19, 2025
Merged

Adds inaccessible support#8887
michaelstaib merged 9 commits intomainfrom
mst/inaccessible-support

Conversation

@michaelstaib
Copy link
Member

No description provided.

@ChilliCream ChilliCream deleted a comment from github-actions bot Nov 19, 2025
@ChilliCream ChilliCream deleted a comment from github-actions bot Nov 19, 2025
@ChilliCream ChilliCream deleted a comment from github-actions bot Nov 19, 2025
@ChilliCream ChilliCream deleted a comment from github-actions bot Nov 19, 2025
@ChilliCream ChilliCream deleted a comment from github-actions bot Nov 19, 2025
@michaelstaib michaelstaib merged commit 6943bc5 into main Nov 19, 2025
113 checks passed
@michaelstaib michaelstaib deleted the mst/inaccessible-support branch November 19, 2025 13:11
@codecov
Copy link

codecov bot commented Nov 19, 2025

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 0.00%. Comparing base (4012f6e) to head (a1ac5c1).
⚠️ Report is 1 commits behind head on main.

Additional details and impacted files
@@     Coverage Diff      @@
##   main   #8887   +/-   ##
============================
============================

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@github-actions
Copy link
Contributor

🚀 Fusion Gateway Performance Results

Simple Composite Query

Constant Load (50 VUs)

Requests/sec Error Rate
5893.76 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.77ms 7.06ms 162.92ms 8.33ms 12.73ms 18.38ms

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

Requests/sec Error Rate
4667.91 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.80ms 37.35ms 276.72ms 47.58ms 105.51ms 126.01ms

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
270.57 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
12.91ms 173.42ms 712.96ms 179.32ms 225.78ms 249.84ms

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

Requests/sec Error Rate
306.75 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
3.09ms 678.90ms 1697.82ms 687.10ms 1390.70ms 1459.39ms

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
24079.86 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.09ms 1.67ms 43.73ms 2.03ms 3.87ms 4.72ms

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

Requests/sec Error Rate
18956.59 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.09ms 9.05ms 103.85ms 11.11ms 23.10ms 27.60ms

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 19502092648 • Commit 96f5521 • Wed, 19 Nov 2025 13:15:23 GMT

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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant