This repository was archived by the owner on Feb 12, 2024. It is now read-only.

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