We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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 believe I have discovered a bug in this library based on GraphiQL usage of the library. If given:
import { dset } from "dset/merge" let input = {}; dset(input, [], { hero: { id: "A" }}); console.log(input) // output: {} // expected: { hero: { id: "A" } }
In the case of GraphQL, this can happen if a field is deferred at the root level (example test case from the reference implementation).
Example commit with test case and a fix: kirkbyo@ffc84ff
Happy to open that commit as a PR here if you would prefer.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
👋 I believe I have discovered a bug in this library based on GraphiQL usage of the library. If given:
In the case of GraphQL, this can happen if a field is deferred at the root level (example test case from the reference implementation).
Example commit with test case and a fix:
kirkbyo@ffc84ff
Happy to open that commit as a PR here if you would prefer.
The text was updated successfully, but these errors were encountered: