Skip to content

Fix BindRuntimeType for wrapped CLR types#9192

Merged
michaelstaib merged 3 commits intomainfrom
mst/issue-2871
Feb 24, 2026
Merged

Fix BindRuntimeType for wrapped CLR types#9192
michaelstaib merged 3 commits intomainfrom
mst/issue-2871

Conversation

@michaelstaib
Copy link
Copy Markdown
Member

@michaelstaib michaelstaib commented Feb 24, 2026

Fixes #2871

@michaelstaib michaelstaib merged commit 9a0c2a2 into main Feb 24, 2026
9 checks passed
@michaelstaib michaelstaib deleted the mst/issue-2871 branch February 24, 2026 22:37
@github-actions
Copy link
Copy Markdown
Contributor

Fusion Gateway Performance Results

Simple Composite Query

Req/s Err%
Constant (50 VUs) 6953.35 0.00%
Ramping (0-500-0 VUs) 7404.20 0.00%
Response Times & Query
Min Med Avg P90 P95 Max
Constant 0.56ms 5.95ms 7.05ms 10.94ms 15.53ms 177.49ms
Ramping 0.58ms 24.31ms 29.78ms 62.64ms 75.59ms 179.04ms
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) 1284.53 0.00%
Ramping (0-500-0 VUs) 1332.72 0.00%
Response Times & Query
Min Med Avg P90 P95 Max
Constant 4.01ms 33.95ms 37.78ms 51.98ms 61.59ms 440.35ms
Ramping 1.96ms 137.48ms 159.53ms 344.85ms 388.32ms 703.16ms
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) 23741.18 0.00%
Ramping (0-500-0 VUs) 18480.67 0.00%
Response Times & Query
Min Med Avg P90 P95 Max
Constant 0.08ms 1.72ms 2.06ms 3.95ms 4.78ms 42.91ms
Ramping 0.08ms 9.34ms 11.38ms 23.39ms 28.21ms 110.84ms
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 22373072424 • Commit 1eb8a75 • Wed, 25 Feb 2026 00:13:47 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.

BindRuntimeType cannot bind arrays

1 participant