meander

All things about https://github.com/noprompt/meander Need help and no one responded? Feel free to ping @U5K8NTHEZ
Michael Nardell 2021-04-01T13:28:22.037800Z

@jimmy Thanks, it is entirely possible I am using Meander in fundamentally the wrong way. I want to build up a data graph from different sources. Also, I should have mentioned that I elided many of the data fields from the actual out put I showed.

jimmy 2021-04-01T13:33:37.040900Z

Yeah sorry I didn't find time last night. Today is my non-busy evening. So I can definitely get to it at some point to day. I will say as a general thing, if you want to keep the nesting structure, I’d recommend rewrite with some memory variables instead of search. Search is going to give you all possible matches of your data as a seq. Rewrite with memory variables will let you control the exact output. If you can give a desired input output pair, that would be super useful.

Michael Nardell 2021-04-01T16:20:21.042600Z

@jimmy Yeah, I figured I need get into memory variables. I will start paying closer attention that topic in your documentation. Thanks!