@mihaelkonjevic In order to understand the dataloader i'm doing a silly test project. I model a list of the typical web demo clickable counters. Each counter keeps a list of clicks as a master/detail relation
the edb schema
when i run this thing, i correctly get the counters in the entity-db
in entity-db->counter->store->4 i can see my counter like this
i was expecting the clicks to be normalized in their own table
am i correct in this assumption (meaning i messed it up in some other place) or does the dataloader maybe just not do normalization ?
The counters datasource
@carkh it should be :relations
, it seems you're missing s
in the schema
@mihaelkonjevic thanks again... pretty hard to know where to look at when i'm not even sure what's supposed to happen
works now !
maybe add some spec validation at some point, i find that's always a sore point with those map driven APIs
i like the controller thing, i was able to add logging of the app-db in a couple minutes work