pathom

Joel 2023-08-04T20:35:50.780159Z

I’ve used Pathom Viz, I like the graph, I like seeing all the resolvers. However, what I think might be possible that I haven’t seen is a representation of a complete nested map or maps that show the accessible data, or maybe the longest EQL for each. Does that exist, make sense, or possible?

wilkerlucio 2023-08-04T20:37:13.231699Z

I had thoughts on it, but its not there yet, its an interesting thing to consider, how we could visualize that. another big one IMO is related to multiple inputs, the current representation (which makes a new node for each combination) is far from ideal

Joel 2023-08-04T22:25:39.036589Z

I’m still naiive on EQL, but isn’t there a query (maybe queries) that would return everything (reachable)? Given that, I’d think I’d be able to pare it as needed.

wilkerlucio 2023-08-08T20:18:18.157469Z

not directly, there is the * which means: return everything you loaded

wilkerlucio 2023-08-08T20:18:53.980209Z

because during the runnnig process, Pathom will merge all the resolver keys that get returned, but later it will remove the ones that are not part of the user request

wilkerlucio 2023-08-08T20:19:06.767439Z

using * you tell pathom to keep all the loaded keys at that level