Skip to content

Fix ParentRequires failing for value type properties (int, enum)#9143

Merged
michaelstaib merged 1 commit intomainfrom
mst/ParentRequires
Feb 18, 2026
Merged

Fix ParentRequires failing for value type properties (int, enum)#9143
michaelstaib merged 1 commit intomainfrom
mst/ParentRequires

Conversation

@michaelstaib
Copy link
Copy Markdown
Member

@michaelstaib michaelstaib commented Feb 18, 2026

Fixes #9092

@michaelstaib michaelstaib merged commit 1c7fe2e into main Feb 18, 2026
117 checks passed
@michaelstaib michaelstaib deleted the mst/ParentRequires branch February 18, 2026 19:51
@codecov
Copy link
Copy Markdown

codecov Bot commented Feb 18, 2026

Codecov Report

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

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

☔ 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
Copy Markdown
Contributor

Fusion Gateway Performance Results

Simple Composite Query

Req/s Err%
Constant (50 VUs) 2914.73 0.00%
Ramping (0-500-0 VUs) 3304.83 0.00%
Response Times & Query
Min Med Avg P90 P95 Max
Constant 0.78ms 15.18ms 16.93ms 30.61ms 35.88ms 170.25ms
Ramping 0.82ms 64.95ms 67.47ms 127.92ms 145.45ms 317.49ms
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) 741.18 0.00%
Ramping (0-500-0 VUs) 833.40 0.00%
Response Times & Query
Min Med Avg P90 P95 Max
Constant 8.93ms 62.47ms 65.90ms 81.26ms 90.39ms 373.22ms
Ramping 1.83ms 252.50ms 258.17ms 502.05ms 535.27ms 678.36ms
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) 23233.32 0.00%
Ramping (0-500-0 VUs) 18176.28 0.00%
Response Times & Query
Min Med Avg P90 P95 Max
Constant 0.10ms 1.75ms 2.10ms 4.00ms 4.84ms 48.03ms
Ramping 0.10ms 9.59ms 11.60ms 23.83ms 28.55ms 105.62ms
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 22153369589 • Commit 2c35e98 • Wed, 18 Feb 2026 20:08:15 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.

ParentRequires strange bug

1 participant