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
Using applyPatch, the index parameter of the custom validator function stays 0 with every call:
applyPatch( json, operations, (change, index, tree, existingPath) => { const parentPath = change.path .split('/') .slice(0, change.path.split('/').length - 1) .join('/'); if (!jsonpointer.exists(tree, parentPath)) { const extendedTree = {...tree}; jsonpointer.set(extendedTree, parentPath, {}); const fixChanges = compare(tree, extendedTree); //TODO fix bug index is always 0 fixedChanges.splice(index, 0, ...fixChanges); throw new JsonPatchError( 'Cannot perform operation at the desired path', 'OPERATION_PATH_UNRESOLVABLE', index, change, tree ); } }, false //mutateDocument ).newDocument;
In the source, constant zero is passed instead of index:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Using applyPatch, the index parameter of the custom validator function stays 0 with every call:
In the source, constant zero is passed instead of index:
The text was updated successfully, but these errors were encountered: