Skip to content

Fix enum value rename in EnumTypeExtension#9193

Merged
michaelstaib merged 2 commits intomainfrom
mst/issue-4108
Feb 24, 2026
Merged

Fix enum value rename in EnumTypeExtension#9193
michaelstaib merged 2 commits intomainfrom
mst/issue-4108

Conversation

@michaelstaib
Copy link
Copy Markdown
Member

@michaelstaib michaelstaib commented Feb 24, 2026

Fixes #4108

@michaelstaib michaelstaib merged commit 3781ff9 into main Feb 24, 2026
5 checks passed
@michaelstaib michaelstaib deleted the mst/issue-4108 branch February 24, 2026 22:35
@github-actions
Copy link
Copy Markdown
Contributor

Fusion Gateway Performance Results

Simple Composite Query

Req/s Err%
Constant (50 VUs) 6902.71 0.00%
Ramping (0-500-0 VUs) 7282.84 0.00%
Response Times & Query
Min Med Avg P90 P95 Max
Constant 0.56ms 5.93ms 7.10ms 11.16ms 15.71ms 177.55ms
Ramping 0.56ms 24.61ms 30.28ms 63.54ms 76.02ms 185.96ms
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) 1291.38 0.00%
Ramping (0-500-0 VUs) 1353.90 0.00%
Response Times & Query
Min Med Avg P90 P95 Max
Constant 3.63ms 33.89ms 37.60ms 51.39ms 60.01ms 464.94ms
Ramping 1.82ms 131.68ms 157.23ms 340.24ms 393.37ms 627.34ms
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) 23860.97 0.00%
Ramping (0-500-0 VUs) 18401.31 0.00%
Response Times & Query
Min Med Avg P90 P95 Max
Constant 0.08ms 1.71ms 2.05ms 3.94ms 4.77ms 43.24ms
Ramping 0.08ms 9.35ms 11.42ms 23.42ms 28.30ms 115.89ms
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 22373055723 • Commit f0147f6 • Tue, 24 Feb 2026 22:58:43 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.

EnumTypeExtension doesn't change name of enum value

1 participant