-
Notifications
You must be signed in to change notification settings - Fork 29
enhance(runtime): support async return values in progressiveOverride
#1642
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Summary of ChangesHello @ardatan, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request significantly enhances the Highlights
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code Review
This pull request enhances the progressiveOverride functionality by adding support for asynchronous operations, allowing it to return a Promise<boolean>. This is a great improvement for scenarios requiring external service calls to determine overrides. The implementation correctly handles both synchronous and asynchronous return values and uses a WeakMap to cache results per request context. I've added a couple of minor suggestions to improve code style and clarity.
🚀 Snapshot Release (
|
| Package | Version | Info |
|---|---|---|
@graphql-tools/federation |
4.2.0-alpha-5f41185b1e0b0102794421e62730e3dec4580827 |
npm ↗︎ unpkg ↗︎ |
@graphql-mesh/fusion-runtime |
1.4.0-alpha-5f41185b1e0b0102794421e62730e3dec4580827 |
npm ↗︎ unpkg ↗︎ |
@graphql-hive/gateway |
2.1.12-alpha-5f41185b1e0b0102794421e62730e3dec4580827 |
npm ↗︎ unpkg ↗︎ |
@graphql-hive/nestjs |
2.0.17-alpha-5f41185b1e0b0102794421e62730e3dec4580827 |
npm ↗︎ unpkg ↗︎ |
@graphql-hive/plugin-aws-sigv4 |
2.0.12-alpha-5f41185b1e0b0102794421e62730e3dec4580827 |
npm ↗︎ unpkg ↗︎ |
@graphql-hive/plugin-deduplicate-request |
2.0.4-alpha-5f41185b1e0b0102794421e62730e3dec4580827 |
npm ↗︎ unpkg ↗︎ |
@graphql-mesh/hmac-upstream-signature |
2.0.4-alpha-5f41185b1e0b0102794421e62730e3dec4580827 |
npm ↗︎ unpkg ↗︎ |
@graphql-mesh/plugin-jwt-auth |
2.0.7-alpha-5f41185b1e0b0102794421e62730e3dec4580827 |
npm ↗︎ unpkg ↗︎ |
@graphql-hive/plugin-opentelemetry |
1.0.14-alpha-5f41185b1e0b0102794421e62730e3dec4580827 |
npm ↗︎ unpkg ↗︎ |
@graphql-mesh/plugin-prometheus |
2.0.15-alpha-5f41185b1e0b0102794421e62730e3dec4580827 |
npm ↗︎ unpkg ↗︎ |
@graphql-hive/gateway-runtime |
2.3.0-alpha-5f41185b1e0b0102794421e62730e3dec4580827 |
npm ↗︎ unpkg ↗︎ |
@graphql-hive/gateway-testing |
2.0.0-alpha-5f41185b1e0b0102794421e62730e3dec4580827 |
npm ↗︎ unpkg ↗︎ |
@graphql-mesh/transport-common |
1.0.8-alpha-5f41185b1e0b0102794421e62730e3dec4580827 |
npm ↗︎ unpkg ↗︎ |
@graphql-mesh/transport-http |
1.0.8-alpha-5f41185b1e0b0102794421e62730e3dec4580827 |
npm ↗︎ unpkg ↗︎ |
@graphql-mesh/transport-http-callback |
1.0.8-alpha-5f41185b1e0b0102794421e62730e3dec4580827 |
npm ↗︎ unpkg ↗︎ |
@graphql-mesh/transport-ws |
2.0.8-alpha-5f41185b1e0b0102794421e62730e3dec4580827 |
npm ↗︎ unpkg ↗︎ |
🚀 Snapshot Release (Node Docker Image)The latest changes of this PR are available as image on GitHub Container Registry (based on the declared |
🚀 Snapshot Release (Bun Docker Image)The latest changes of this PR are available as image on GitHub Container Registry (based on the declared |
enisdenjo
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looking nice! Just one small remark about the example in changesets and lets land this.
Co-authored-by: Denis Badurina <[email protected]>
Added TypeScript code snippet for progressiveOverride.
a5396f6 to
5f41185
Compare
Support promises in
progressiveOverrideoption