Index: library/mongodb/example-nx-bi.tcl =================================================================== diff -u -ra24e1f836c3126d0a0e9467bde3a9fa8da901711 -r9b6c213c40496c03faa151f4f92028fc2610c396 --- library/mongodb/example-nx-bi.tcl (.../example-nx-bi.tcl) (revision a24e1f836c3126d0a0e9467bde3a9fa8da901711) +++ library/mongodb/example-nx-bi.tcl (.../example-nx-bi.tcl) (revision 9b6c213c40496c03faa151f4f92028fc2610c396) @@ -46,16 +46,16 @@ nx::mongo::Class create Comment { :property author:required :property comment:required - :property replies:embedded,type=::Comment,0..n {set :incremental 1} + :property replies:embedded,incremental,type=::Comment,0..n } nx::mongo::Class create Posting { :index tags :property title:required :property author:required :property ts:required - :property comments:embedded,type=::Comment,0..n {set :incremental 1} - :property tags:0..n {set :incremental 1} + :property comments:embedded,incremental,type=::Comment,0..n + :property tags:incremental,0..n } ######################################################################