ProtoField.yql 337 B

1234567891011
  1. (
  2. #comment
  3. (let mr_source (DataSource 'yt 'plato))
  4. (let x (Read! world mr_source (Key '('table (String 'Input))) '('key 'subkey 'value) '()))
  5. (let world (Left! x))
  6. (let table1 (Right! x))
  7. (let res_sink (DataSink 'result))
  8. (let world (Write! world res_sink (Key) table1 '('('type))))
  9. (let world (Commit! world res_sink))
  10. (return world)
  11. )