Skip to content

feat: allow to log response payload and fix feature flag expression bug#2004

Merged
SkArchon merged 15 commits intomainfrom
milinda/eng-7440-allow-to-log-response-payload-of-router-and-subgraph-via
Jul 9, 2025
Merged

feat: allow to log response payload and fix feature flag expression bug#2004
SkArchon merged 15 commits intomainfrom
milinda/eng-7440-allow-to-log-response-payload-of-router-and-subgraph-via

Conversation

@SkArchon
Copy link
Copy Markdown
Contributor

@SkArchon SkArchon commented Jul 2, 2025

Summary by CodeRabbit

  • New Features
    • Added support for using response and subgraph response bodies in access log expressions, enabling more detailed and customizable logging.
    • Enhanced expression evaluation to detect and utilize response body fields.
  • Bug Fixes
    • Improved detection and handling of request, response, and subgraph response bodies in expressions.
  • Tests
    • Introduced comprehensive tests for expression usage of response and subgraph response bodies, increasing test coverage.
    • Added new subtests to verify expression evaluation in access logs and subgraph access logs.
  • Chores
    • Updated dependencies to the latest version for improved stability and compatibility.
    • Removed debug print statements for cleaner logs.

Depends on wundergraph/graphql-go-tools#1203

Docs: wundergraph/cosmo-docs#110

Checklist

@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented Jul 2, 2025

## Walkthrough

This change introduces support for accessing both top-level and subgraph GraphQL response bodies in expression-based logging and configuration. It adds new AST visitors, context fields, and detection logic for `response.body` and `subgraph.response.body` usage in expressions. The server middleware and engine hooks are updated to capture and store response bodies when required. Comprehensive unit and integration tests are included, and dependencies are updated. Additionally, minor cleanup removes debug print statements in tests and metric code.

## Changes

| Files/Groups                                                                 | Change Summary |
|------------------------------------------------------------------------------|---------------|
| `router/internal/expr/expr.go`                                               | Adds `Response` field to `Context`, introduces `Response`, `SubgraphResponse` structs, updates `Request` and `Subgraph` structs to support response body access in expressions. |
| `router/internal/expr/visitor_group.go`                                      | Renames and exports `visitorGroup` to `VisitorGroup`, adds new visitor kinds and methods for detecting `response.body` and `subgraph.response.body` usage in expressions, updates factory and method names. |
| `router/internal/expr/uses_response_body.go`<br>`.../uses_response_body_test.go` | Introduces `UsesResponseBody` AST visitor and corresponding tests to detect `response.body` usage in expressions. |
| `router/internal/expr/uses_subgraph_response_body.go`<br>`.../uses_subgraph_response_body_test.go` | Introduces `UsesSubgraphResponseBody` AST visitor and corresponding tests for `subgraph.response.body` usage detection. |
| `router/internal/expr/visitor_group_test.go`                                 | Adds tests for `VisitorGroup` methods detecting response body and subgraph response body usage in various expression forms. |
| `router/internal/expr/expr_manager.go`                                       | Updates `Manager` to use exported `VisitorGroup` type, changes initialization to use new factory function. |
| `router/internal/expr/expr_manager_test.go`                                  | Updates tests to use new method `IsRequestBodyUsedInExpressions()` instead of the old method. |
| `router/core/engine_loader_hooks.go`                                         | Adds `storeSubgraphResponseBody` field and parameter, conditionally stores subgraph response body in expression context during request finalization. |
| `router/core/graph_server.go`                                                | Refactors access log attribute handling, adds middleware to capture HTTP response body when needed, passes new boolean to engine hooks for subgraph response body capture. |
| `router/core/graphql_prehandler.go`                                          | Switches to new method `IsRequestBodyUsedInExpressions()` for request body capture logic. |
| `router-tests/structured_logging_test.go`                                    | Adds new subtests covering logging of expression-evaluated fields for response bodies and subgraph response bodies. |
| `router-tests/circuit_breaker_test.go`<br>`router/pkg/metric/prom_metric_store.go` | Removes unused "fmt" imports and debug print statements from circuit breaker test and metric store code. |
| `router/go.mod`<br>`router-tests/go.mod`                                     | Updates `github.com/wundergraph/graphql-go-tools/v2` dependency from `v2.0.0-rc.200` to `v2.0.0-rc.201`. |

📜 Recent review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 1a0b567 and e7aec5f.

📒 Files selected for processing (1)
  • router/core/graph_server.go (4 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • router/core/graph_server.go
✨ Finishing Touches
  • 📝 Generate Docstrings

🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Explain this complex logic.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai explain this code block.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and explain its main purpose.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai generate sequence diagram to generate a sequence diagram of the changes in this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@github-actions github-actions Bot added the router label Jul 2, 2025
@SkArchon SkArchon marked this pull request as ready for review July 2, 2025 16:34
Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 3

🔭 Outside diff range comments (1)
router/internal/expr/expr.go (1)

41-61: Update Clone method to handle new Response fields.

The Clone() method doesn't handle the new Response and SubgraphResponse fields. While these currently only contain simple Body structs with string fields, the method should be updated for consistency and future-proofing.

func (copyCtx Context) Clone() *Context {
	// the method receiver copyCtx is already a copy
	// so we just need to make sure any pointer values are copied
	scopes := make([]string, len(copyCtx.Request.Auth.Scopes))
	copy(scopes, copyCtx.Request.Auth.Scopes)
	copyCtx.Request.Auth.Scopes = scopes

	claims := make(map[string]any, len(copyCtx.Request.Auth.Claims))
	for k, v := range copyCtx.Request.Auth.Claims {
		claims[k] = v
	}
	copyCtx.Request.Auth.Claims = claims

	query := make(map[string]string, len(copyCtx.Request.URL.Query))
	for k, v := range copyCtx.Request.URL.Query {
-		claims[k] = v
+		query[k] = v
	}
	copyCtx.Request.URL.Query = query

+	// Note: Response and SubgraphResponse currently contain only value types,
+	// but this ensures consistency if they're extended with pointer fields
+	// copyCtx.Response and copyCtx.Subgraph.Response are already copied by value

	return &copyCtx
}

Note: I also fixed a bug where claims[k] = v should be query[k] = v on line 56.

🧹 Nitpick comments (1)
router-tests/structured_logging_test.go (1)

2943-2991: Comprehensive subgraph response body test with detailed validation.

This test effectively validates the subgraph.responseBody.raw expression across multiple subgraph calls. The assertions comprehensively check all expected response bodies from different subgraphs, which is excellent for ensuring the feature works correctly across complex GraphQL operations.

The hardcoded response body strings are quite long but necessary for precise validation. Consider if these could be extracted to constants or helper functions to improve readability, though this follows the existing pattern in the test file.

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between cd9ddb2 and 6148746.

📒 Files selected for processing (14)
  • router-tests/structured_logging_test.go (3 hunks)
  • router/core/engine_loader_hooks.go (5 hunks)
  • router/core/graph_server.go (3 hunks)
  • router/core/graphql_handler.go (5 hunks)
  • router/core/graphql_prehandler.go (2 hunks)
  • router/internal/expr/expr.go (4 hunks)
  • router/internal/expr/expr_manager.go (1 hunks)
  • router/internal/expr/expr_manager_test.go (3 hunks)
  • router/internal/expr/uses_response_body.go (1 hunks)
  • router/internal/expr/uses_response_body_test.go (1 hunks)
  • router/internal/expr/uses_subgraph_response_body.go (1 hunks)
  • router/internal/expr/uses_subgraph_response_body_test.go (1 hunks)
  • router/internal/expr/visitor_group.go (1 hunks)
  • router/internal/expr/visitor_group_test.go (1 hunks)
🧰 Additional context used
🧬 Code Graph Analysis (6)
router/internal/expr/expr_manager.go (1)
router/internal/expr/visitor_group.go (1)
  • VisitorGroup (17-20)
router/internal/expr/visitor_group_test.go (2)
router-tests/testenv/testenv.go (1)
  • Run (104-121)
router/internal/expr/expr_manager.go (1)
  • CreateNewExprManager (19-23)
router/internal/expr/uses_subgraph_response_body_test.go (1)
router/internal/expr/uses_subgraph_response_body.go (1)
  • UsesSubgraphResponseBody (10-12)
router-tests/structured_logging_test.go (3)
router-tests/testenv/testenv.go (5)
  • Run (104-121)
  • Config (279-334)
  • LogObservationConfig (380-383)
  • Environment (1715-1751)
  • GraphQLRequest (1883-1891)
router/pkg/config/config.go (3)
  • Config (932-1006)
  • CustomAttribute (43-47)
  • CustomDynamicAttribute (36-41)
router/internal/expr/expr.go (1)
  • Body (92-94)
router/internal/expr/visitor_group.go (4)
router/internal/expr/use_body.go (1)
  • UsesBody (7-9)
router/internal/expr/uses_subgraph_trace.go (1)
  • UsesSubgraphTrace (9-11)
router/internal/expr/uses_response_body.go (1)
  • UsesResponseBody (10-12)
router/internal/expr/uses_subgraph_response_body.go (1)
  • UsesSubgraphResponseBody (10-12)
router/core/graph_server.go (5)
router/internal/requestlogger/access_log_expression.go (1)
  • CleanupExpressionAttributes (42-52)
router/internal/requestlogger/requestlogger.go (6)
  • Option (35-35)
  • WithDefaultOptions (101-109)
  • WithNoTimeField (88-93)
  • WithFields (95-99)
  • WithAttributes (64-68)
  • IPAnonymizationConfig (37-40)
router/internal/requestlogger/subgraphlogger.go (2)
  • NewSubgraphAccessLogger (36-48)
  • SubgraphOptions (28-34)
router/pkg/trace/meter.go (1)
  • IPAnonymizationConfig (30-33)
router/core/request_context_fields.go (1)
  • SubgraphAccessLogsFieldHandler (116-132)
🪛 GitHub Actions: Router CI
router/core/engine_loader_hooks.go

[error] 156-156: go vet error: 'responseInfo.ResponseBody' undefined (type *resolve.ResponseInfo has no field or method ResponseBody)

🔇 Additional comments (25)
router/internal/expr/expr_manager_test.go (1)

142-142: LGTM! Consistent method rename for improved clarity.

The method name change from IsBodyUsedInExpressions() to IsRequestBodyUsedInExpressions() provides better clarity by explicitly indicating that it checks for request body usage, distinguishing it from response body usage detection.

Also applies to: 160-160, 173-173

router/core/graphql_prehandler.go (1)

303-303: LGTM! Consistent with the expression manager refactoring.

The method rename maintains consistency across the codebase and improves clarity by explicitly indicating request body usage detection.

Also applies to: 335-335

router/internal/expr/expr_manager.go (1)

16-16: LGTM! Proper export and naming improvements.

The changes export the VisitorGroup type and standardize the factory function name, making the visitor management functionality more accessible and consistently named.

Also applies to: 21-21

router/internal/expr/visitor_group_test.go (1)

9-126: LGTM! Comprehensive test coverage for new visitor functionality.

The test suite provides excellent coverage of the new response body detection methods with:

  • Multiple expression patterns (dot notation, bracket notation, mixed access)
  • Both positive and negative test cases
  • Parallel execution for efficiency
  • Clear test case naming and structure

The test cases appropriately validate that the visitor manager correctly identifies when expressions reference response.body and subgraph.response.body fields.

router/core/engine_loader_hooks.go (2)

45-45: LGTM! Proper integration of expression visitor manager.

The addition of exprVisitorManager field and its initialization in the constructor follows the established pattern and correctly integrates the visitor management functionality.

Also applies to: 59-59, 81-81


155-157: Fix compilation error: use correct ResponseInfo field for response body

File: router/core/engine_loader_hooks.go (lines 155–157)

if f.exprVisitorManager.IsSubgraphResponseBodyUsedInExpression() {
    exprCtx.Subgraph.Response.Body.Raw = responseInfo.ResponseBody
}

The ResponseInfo type from
github.com/wundergraph/graphql-go-tools/v2/pkg/engine/resolve
does not define a ResponseBody field. Please update this assignment to use the actual field or getter on ResponseInfo, for example:

  • If the field is named RawResponse:
    exprCtx.Subgraph.Response.Body.Raw = responseInfo.RawResponse
  • If there’s a method GetResponseBody():
    exprCtx.Subgraph.Response.Body.Raw = responseInfo.GetResponseBody()

Consult the ResponseInfo definition in the GraphQL tools library and adjust accordingly to resolve the compilation error.

router/core/graphql_handler.go (2)

9-9: LGTM: Clean import addition.

The import for the internal expr package is correctly placed and necessary for the new expression visitor functionality.


202-207: LGTM: Response body capture logic is well-implemented.

The conditional logic correctly:

  • Checks if response body is used in expressions before capturing
  • Uses respBuf.String() which safely returns the entire buffer content
  • Assigns to the appropriate expression context field

The comment explaining the buffer offset behavior is helpful for maintainability.

router/internal/expr/uses_response_body.go (1)

1-63: LGTM: Well-implemented visitor pattern for response body detection.

The implementation correctly:

  • Uses early returns to optimize traversal when target is found or node is nil
  • Properly detects the response.body access pattern through member node analysis
  • Handles both StringNode and IdentifierNode property types
  • Recursively traverses nested member access structures

The code is clean, well-commented, and follows good practices for AST visitor patterns.

router/core/graph_server.go (2)

929-929: LGTM: Proper configuration immutability preserved.

The use of CleanupExpressionAttributes correctly creates local copies of the configuration attributes, preserving the original configuration while filtering out expression-based attributes for traditional logging. This maintains configuration immutability and separation of concerns.

Also applies to: 935-935, 961-961, 969-969


1172-1174: LGTM: Consistent expression visitor manager integration.

The expression visitor manager is correctly passed to both the engine loader hooks and the handler options, ensuring consistent access to expression visitor state across components.

router/internal/expr/uses_response_body_test.go (1)

1-135: LGTM: Comprehensive test coverage for response body visitor.

The test suite excellently covers:

  • Edge cases (nil nodes, non-member nodes)
  • Positive detection scenarios (response.body, response.body.raw)
  • Negative scenarios (wrong property names, wrong base objects)
  • Different AST node types (StringNode vs IdentifierNode properties)
  • Optimization behavior (early return when already detected)
  • Nested member access patterns

This thorough testing ensures the visitor behaves correctly across all expected use cases.

router/internal/expr/uses_subgraph_response_body.go (1)

1-75: LGTM: Well-implemented subgraph response body visitor.

The implementation correctly handles the three-level property chain detection for subgraph.response.body:

  • Properly validates each level of the property chain in reverse order
  • Uses consistent error handling and early returns
  • Maintains the same code structure and patterns as the related UsesResponseBody visitor
  • Includes appropriate type checking for nested member nodes

The step-by-step validation ensures accurate detection while maintaining code readability.

router/internal/expr/expr.go (5)

36-36: LGTM! Response field addition follows existing patterns.

The addition of the Response field to the Context struct is well-structured and follows the same pattern as the existing Request field.


69-74: LGTM! Body type generalization and field reordering.

The generalization from RequestBody to Body makes sense since the same structure is now used for both request and response bodies. Moving the Error field to the end is a minor structural improvement.


76-78: LGTM! Response struct follows established patterns.

The new Response struct is simple and consistent with the existing architecture, providing a clean way to access response body data in expressions.


92-94: LGTM! Body struct generalization.

Renaming RequestBody to Body is a good generalization that allows the same structure to be used for both request and response bodies.


130-144: LGTM! Subgraph response support is well-structured.

The addition of SubgraphResponse struct and the Response field to the Subgraph struct provides comprehensive response body access for subgraph expressions.

router/internal/expr/uses_subgraph_response_body_test.go (2)

1-264: Excellent comprehensive test coverage for UsesSubgraphResponseBody visitor.

This test file provides thorough coverage of the UsesSubgraphResponseBody visitor with well-structured test cases covering:

  • Positive cases: Correct detection of subgraph.response.body access patterns
  • Negative cases: Proper rejection of similar but incorrect patterns
  • Edge cases: Handling of different AST node types and structures
  • Deep nesting: Support for accessing nested properties like subgraph.response.body.raw

The test cases are well-organized, each has a clear purpose, and the AST node construction accurately represents the expression structures being tested.


146-163: Visitor intentionally supports both StringNode and IdentifierNode for properties

The getPropertyName helper explicitly handles both *ast.StringNode and *ast.IdentifierNode, so allowing non-string property nodes in your tests is correct and aligns with the implementation. No changes required.

router-tests/structured_logging_test.go (1)

2535-2565: LGTM! Well-structured response body expression test.

This test properly validates the new response.body.raw expression capability. The configuration is correct, the assertions are specific, and it follows the established test patterns.

router/internal/expr/visitor_group.go (4)

8-12: LGTM! Good expansion of visitor kinds for response body support.

The renaming of usesBodyKey to usesRequestBodyKey provides better clarity, and the addition of usesResponseBodyKey and usesSubgraphResponseBodyKey appropriately extends the framework to support the new response payload logging feature.


17-17: LGTM! Appropriate export of the struct.

Making VisitorGroup exported allows external packages to use this functionality, which aligns with the PR objectives to enable response payload logging across the codebase.


22-31: LGTM! Proper integration of new visitor types.

The factory function correctly initializes all visitor types including the new response body visitors. The mapping between visitor kinds and their corresponding visitor structs is consistent and follows the established pattern.


33-36: LGTM! Improved method naming for clarity.

The rename from IsBodyUsedInExpressions to IsRequestBodyUsedInExpressions provides better specificity about which type of body is being checked, improving code readability.

Comment thread router/core/graphql_handler.go Outdated
Comment thread router-tests/structured_logging_test.go Outdated
Comment thread router/internal/expr/visitor_group.go Outdated
@SkArchon SkArchon marked this pull request as draft July 2, 2025 17:13
@SkArchon SkArchon changed the title feat allow to log response payload and fix feature flag expression bug feat: allow to log response payload and fix feature flag expression bug Jul 2, 2025
@github-actions
Copy link
Copy Markdown

github-actions Bot commented Jul 2, 2025

Router image scan passed

✅ No security vulnerabilities found in image:

ghcr.io/wundergraph/cosmo/router:sha-2e2e649cc4aa508df259cd3c37f80b934d8c3eb7

@SkArchon SkArchon marked this pull request as ready for review July 2, 2025 17:36
Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (1)
router/internal/expr/visitor_group_test.go (1)

15-50: Consider adding edge case test scenarios.

The current test cases cover the main access patterns well. Consider adding tests for:

  • Invalid/malformed expressions to verify error handling
  • Complex expressions combining multiple patterns
  • Expressions that don't reference response/subgraph at all
  • Empty expressions

Example additional test cases:

+			{
+				name:           "complex expression with body",
+				expression:     "response.body.data && request.headers['content-type']",
+				expectedResult: true,
+			},
+			{
+				name:           "no response reference",
+				expression:     "request.method == 'POST'",
+				expectedResult: false,
+			},
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 6148746 and f9490d3.

⛔ Files ignored due to path filters (2)
  • router-tests/go.sum is excluded by !**/*.sum
  • router/go.sum is excluded by !**/*.sum
📒 Files selected for processing (6)
  • router-tests/go.mod (1 hunks)
  • router/core/engine_loader_hooks.go (5 hunks)
  • router/core/graphql_handler.go (5 hunks)
  • router/go.mod (1 hunks)
  • router/internal/expr/visitor_group.go (1 hunks)
  • router/internal/expr/visitor_group_test.go (1 hunks)
✅ Files skipped from review due to trivial changes (2)
  • router/go.mod
  • router-tests/go.mod
🚧 Files skipped from review as they are similar to previous changes (3)
  • router/core/engine_loader_hooks.go
  • router/core/graphql_handler.go
  • router/internal/expr/visitor_group.go
🧰 Additional context used
🧬 Code Graph Analysis (1)
router/internal/expr/visitor_group_test.go (1)
router/internal/expr/expr_manager.go (1)
  • CreateNewExprManager (19-23)
⏰ Context from checks skipped due to timeout of 90000ms (1)
  • GitHub Check: integration_test (./. ./fuzzquery ./lifecycle ./modules)
🔇 Additional comments (3)
router/internal/expr/visitor_group_test.go (3)

1-127: Excellent test coverage for visitor manager functionality.

This test file demonstrates solid testing practices with comprehensive coverage of the VisitorManager's body usage detection capabilities. The test structure is well-organized, uses proper isolation, and covers various expression syntaxes effectively.


56-62: Test execution pattern is well-structured.

The pattern of creating a new expression manager for each test case ensures proper test isolation. The compilation step followed by visitor state checking correctly validates the detection logic.


70-110: Comprehensive subgraph response body test coverage.

The test cases appropriately verify that only expressions accessing subgraph.response.body (and its nested properties) return true, while shorter paths like subgraph or subgraph.response correctly return false.

Comment thread router-tests/structured_logging_test.go Outdated
Comment thread router/core/engine_loader_hooks.go Outdated
Comment thread router/core/graphql_handler.go Outdated
@coderabbitai coderabbitai Bot mentioned this pull request Jul 8, 2025
5 tasks
@SkArchon SkArchon force-pushed the milinda/eng-7440-allow-to-log-response-payload-of-router-and-subgraph-via branch from 3f1a476 to 729f6ee Compare July 8, 2025 15:12
@SkArchon SkArchon force-pushed the milinda/eng-7440-allow-to-log-response-payload-of-router-and-subgraph-via branch from a7a241f to a2a8ea5 Compare July 9, 2025 10:00
@SkArchon SkArchon requested a review from StarpTech July 9, 2025 10:31
Copy link
Copy Markdown
Contributor

@StarpTech StarpTech left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@SkArchon SkArchon merged commit 7000599 into main Jul 9, 2025
31 of 32 checks passed
@SkArchon SkArchon deleted the milinda/eng-7440-allow-to-log-response-payload-of-router-and-subgraph-via branch July 9, 2025 14:26
yuzoonc1 pushed a commit to yuzoonc1/cosmo that referenced this pull request Jul 9, 2025
@coderabbitai coderabbitai Bot mentioned this pull request Aug 18, 2025
5 tasks
@coderabbitai coderabbitai Bot mentioned this pull request Oct 13, 2025
5 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants