bshapcott / modmite

Automatically exported from code.google.com/p/modmite
0 stars 0 forks source link

Multiple Binds #25

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
1. XML permits element to repeat
2. JSON replaces previous
   1. {“task”: {...}, “task”: {...}} legal, but if simply eval‘ed, only one
task element results
   2. wrapped objects in an array works, but the nesting and nesting syntax
are fugly
      1. [{task...}}, {task...}}]
   3. “task”: [{...}, {...}]
      1. promotion/demotion
      2. even this gets ugly, what about multiple queries?
   4. the only neat solution with respect to nesting is internalizing names
      1. task...} becomes {”$”: task}

Original issue reported on code.google.com by dbsha...@gmail.com on 24 Sep 2009 at 9:22