Skip to content

Fix compilation errors#9186

Merged
michaelstaib merged 2 commits into
mainfrom
mst/compile-issue-109278
Feb 24, 2026
Merged

Fix compilation errors#9186
michaelstaib merged 2 commits into
mainfrom
mst/compile-issue-109278

Conversation

@michaelstaib
Copy link
Copy Markdown
Member

No description provided.

@michaelstaib michaelstaib merged commit 542753d into main Feb 24, 2026
4 checks passed
@michaelstaib michaelstaib deleted the mst/compile-issue-109278 branch February 24, 2026 13:22
@github-actions
Copy link
Copy Markdown
Contributor

Fusion Gateway Performance Results

Simple Composite Query

Req/s Err%
Constant (50 VUs) 6931.79 0.00%
Ramping (0-500-0 VUs) 7365.84 0.00%
Response Times & Query
Min Med Avg P90 P95 Max
Constant 0.56ms 5.95ms 7.07ms 10.91ms 15.55ms 177.07ms
Ramping 0.56ms 24.26ms 29.94ms 63.54ms 75.50ms 177.90ms
query TestQuery {
  topProducts(first: 5) {
    inStock
    name
    price
    shippingEstimate
    upc
    weight
    reviews {
      id
      body
      author {
        id
        username
        name
      }
    }
  }
}

Deep Recursion Query

Req/s Err%
Constant (50 VUs) 1287.73 0.00%
Ramping (0-500-0 VUs) 1344.10 0.00%
Response Times & Query
Min Med Avg P90 P95 Max
Constant 3.65ms 34.01ms 37.71ms 51.49ms 60.62ms 450.64ms
Ramping 1.90ms 135.98ms 158.37ms 341.56ms 387.74ms 686.55ms
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

Req/s Err%
Constant (50 VUs) 23684.04 0.00%
Ramping (0-500-0 VUs) 18358.34 0.00%
Response Times & Query
Min Med Avg P90 P95 Max
Constant 0.08ms 1.71ms 2.06ms 3.95ms 4.81ms 44.60ms
Ramping 0.08ms 9.59ms 11.54ms 23.50ms 28.47ms 109.54ms
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 22352705699 • Commit f44cb2c • Tue, 24 Feb 2026 13:53:53 GMT

@codecov
Copy link
Copy Markdown

codecov Bot commented Feb 25, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 0.00%. Comparing base (6a3b7a3) to head (c4578da).
⚠️ Report is 804 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main   #9186       +/-   ##
==========================================
- Coverage   74.16%       0   -74.17%     
==========================================
  Files        2677       0     -2677     
  Lines      140790       0   -140790     
  Branches    16371       0    -16371     
==========================================
- Hits       104421       0   -104421     
+ Misses      30774       0    -30774     
+ Partials     5595       0     -5595     
Flag Coverage Δ
unittests ?

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ 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.

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