Update Wiz to allow API errors#257
Open
0BL1V10N-55 wants to merge 1 commit into
Open
Conversation
Added GraphQL error handling: The code now checks for errors in the GraphQL response before processing the data. If errors are present, it returns a descriptive error message.
Added nil checks: When traversing the data path, if any element is nil, the code now returns an empty result instead of failing with an error. This handles cases where the API returns a valid response but with no data (e.g., {"data": null}).
Improved error messages: Added the actual value to the error message to help with debugging.
The error you were seeing ("expected object at path data, got <nil>") was likely caused by the Wiz API returning either:
A GraphQL error in the response
A null data field (e.g., {"data": null})
Now the adapter will handle these cases gracefully by either reporting the GraphQL error or continuing to poll without crashing.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description of the change
Added GraphQL error handling: The code now checks for errors in the GraphQL response before processing the data. If errors are present, it returns a descriptive error message.
Added nil checks: When traversing the data path, if any element is nil, the code now returns an empty result instead of failing with an error. This handles cases where the API returns a valid response but with no data (e.g., {"data": null}).
Improved error messages: Added the actual value to the error message to help with debugging.
The error you were seeing ("expected object at path data, got ") was likely caused by the Wiz API returning either:
A GraphQL error in the response
A null data field (e.g., {"data": null})
Now the adapter will handle these cases gracefully by either reporting the GraphQL error or continuing to poll without crashing.
Type of change