Skip to content

Fix issue with the source generator type inference.#8926

Merged
michaelstaib merged 2 commits into
mainfrom
mst/sourcegen-type-inference-issues
Nov 18, 2025
Merged

Fix issue with the source generator type inference.#8926
michaelstaib merged 2 commits into
mainfrom
mst/sourcegen-type-inference-issues

Conversation

@michaelstaib
Copy link
Copy Markdown
Member

No description provided.

@michaelstaib michaelstaib merged commit 5dc88e7 into main Nov 18, 2025
5 of 6 checks passed
@michaelstaib michaelstaib deleted the mst/sourcegen-type-inference-issues branch November 18, 2025 21:41
@github-actions
Copy link
Copy Markdown
Contributor

🚀 Fusion Gateway Performance Results

Simple Composite Query

Constant Load (50 VUs)

Requests/sec Error Rate
5929.13 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.73ms 7.08ms 158.86ms 8.28ms 12.61ms 18.14ms

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

Requests/sec Error Rate
4584.49 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.76ms 38.54ms 234.93ms 48.34ms 108.56ms 127.59ms

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
269.83 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
12.45ms 173.88ms 650.59ms 179.78ms 225.23ms 248.00ms

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

Requests/sec Error Rate
307.15 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
3.03ms 668.21ms 1707.41ms 689.00ms 1375.89ms 1484.10ms

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
23987.48 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.09ms 1.68ms 48.32ms 2.03ms 3.88ms 4.75ms

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

Requests/sec Error Rate
18892.83 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.09ms 9.06ms 114.35ms 11.16ms 23.17ms 28.05ms

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 19481323165 • Commit 7869e94 • Tue, 18 Nov 2025 21:59:08 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