We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
get
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
I started to get cannot fetch struct from <nil> after the 1.17.0 release. Seems weird as It seems the whole point was to improve that function.
cannot fetch struct from <nil>
Seems like an issue in 435b79d#diff-af7c4544b9d6b20c320816544b93248b632a6600a1b31e18960020755a5ec753R377
Before something like this {} | get("struct") | get("asdf") worked and yielded nil which was useful, not sure if that was intended or not.
{} | get("struct") | get("asdf")
nil
Any comments? Happy to make a PR with a change to this, or maybe implement a safe get, e.g. with a fallback
{} | get("struct", {}) | get("asdf") == nil
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
I started to get
cannot fetch struct from <nil>
after the 1.17.0 release. Seems weird as It seems the whole point was to improve that function.Seems like an issue in 435b79d#diff-af7c4544b9d6b20c320816544b93248b632a6600a1b31e18960020755a5ec753R377
Before something like this
{} | get("struct") | get("asdf")
worked and yieldednil
which was useful, not sure if that was intended or not.Any comments? Happy to make a PR with a change to this, or maybe implement a safe
get
, e.g. with a fallback{} | get("struct", {}) | get("asdf") == nil
The text was updated successfully, but these errors were encountered: