Skip to content

Added pattern to UUID type#8918

Merged
glen-84 merged 2 commits into
mainfrom
gai/add-uuid-pattern
Nov 18, 2025
Merged

Added pattern to UUID type#8918
glen-84 merged 2 commits into
mainfrom
gai/add-uuid-pattern

Conversation

@glen-84
Copy link
Copy Markdown
Member

@glen-84 glen-84 commented Nov 18, 2025

Summary of the changes (Less than 80 chars)

  • Added pattern to UUID type.

@glen-84 glen-84 merged commit 3752e11 into main Nov 18, 2025
112 checks passed
@glen-84 glen-84 deleted the gai/add-uuid-pattern branch November 18, 2025 07:37
@codecov
Copy link
Copy Markdown

codecov Bot commented Nov 18, 2025

Codecov Report

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

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

☔ 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

Constant Load (50 VUs)

Requests/sec Error Rate
5997.17 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.76ms 6.95ms 157.87ms 8.19ms 12.56ms 17.81ms

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

Requests/sec Error Rate
4602.28 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.74ms 36.37ms 318.02ms 48.22ms 110.88ms 130.52ms

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
270.71 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
12.86ms 173.65ms 668.30ms 179.04ms 224.23ms 248.41ms

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

Requests/sec Error Rate
314.15 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
3.00ms 666.69ms 1729.17ms 672.95ms 1292.66ms 1448.20ms

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
24168.57 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.09ms 1.66ms 43.56ms 2.02ms 3.84ms 4.72ms

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

Requests/sec Error Rate
19050.39 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.09ms 9.16ms 116.37ms 11.17ms 23.18ms 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 19457852653 • Commit b58e948 • Tue, 18 Nov 2025 07:49:14 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