-
Notifications
You must be signed in to change notification settings - Fork 199
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
Enable resolve for query and json parameters #2208
base: devel
Are you sure you want to change the base?
Enable resolve for query and json parameters #2208
Conversation
✅ Deploy Preview for dlt-hub-docs canceled.
|
…ent_field for path and json
@burnash feel free to review this |
def recursive_search(value): | ||
if isinstance(value, dict): | ||
for key, val in value.items(): | ||
recursive_search(key) |
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.
Could you elaborate on the use case for this? Is this the case for JSON with parametrized keys?
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.
I don't have an exact use case for this, but given the crazy APIs out there, I guess this can happen too
Description
Related Issues
Additional Context