This repository was archived by the owner on Feb 12, 2024. It is now read-only.
This repository was archived by the owner on Feb 12, 2024. It is now read-only.
The resolve command should work even if the path ends in the middle of an object #1763
Closed
Description
Being able to path into objects, not just to objects is a crucial feature of IPLD.
Given:
b = {"c": "some value"}
a = {"b": {"/": cidOf(b) }}
ipfs resolve /ipld/cidOf(a)/b/c
should return /ipld/cidOf(b)/c
. That is, it should resolve the path as much as it can.
Currently, this simply fails with an error.
See: ipfs/kubo#5704