:b
attribute is unreachable but I think it should work
The problem here is that you trying to override the value of :doc
, Pathom doesn't do that
ah, I see. That would explain some other wierdness
Pathom can go down and further process an entity, but from the parent level you can only set the value for that property once
one thing to help thinking though this, when processing the attributes for an entity, the entity starts with the initial available data, and merges new data as it calls resolvers, during merge, it will never override a value that's already there, once a value is set on a entity, that value will never be replaced (or merged, since Pathom sees the value in the entity, pathom considers it done at that level)
^^ This is the key
Thaanks!