keechma

Keechma stack. Mention @U050986L9 or @U2J1PHYNM if you have any questions
carkh 2019-06-01T07:06:26.036700Z

@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

carkh 2019-06-01T07:06:44.036800Z

the edb schema

carkh 2019-06-01T07:08:29.038Z

when i run this thing, i correctly get the counters in the entity-db

carkh 2019-06-01T07:09:15.038800Z

in entity-db->counter->store->4 i can see my counter like this

carkh 2019-06-01T07:09:39.038900Z

carkh 2019-06-01T07:10:01.039500Z

i was expecting the clicks to be normalized in their own table

carkh 2019-06-01T07:10:39.040300Z

am i correct in this assumption (meaning i messed it up in some other place) or does the dataloader maybe just not do normalization ?

carkh 2019-06-01T07:12:21.040600Z

The counters datasource

mihaelkonjevic 2019-06-01T14:30:07.043Z

@carkh it should be :relations, it seems you're missing s in the schema

carkh 2019-06-01T15:31:49.043700Z

@mihaelkonjevic thanks again... pretty hard to know where to look at when i'm not even sure what's supposed to happen

carkh 2019-06-01T15:31:53.043900Z

works now !

carkh 2019-06-01T15:33:08.044700Z

maybe add some spec validation at some point, i find that's always a sore point with those map driven APIs

carkh 2019-06-01T15:34:38.045200Z

i like the controller thing, i was able to add logging of the app-db in a couple minutes work