DifferentAliasesToOneFile.yqls 306 B

123456789101112
  1. (
  2. #comment
  3. (let config (DataSource 'config))
  4. (let res_sink (DataSink 'result))
  5. (let results (AsDict
  6. '((String 'OneFile) (FileContent 'OneFile))
  7. '((String 'AnotherFile) (FileContent 'AnotherFile))
  8. ))
  9. (let world (Write! world res_sink (Key) results '('('type))))
  10. (return (Commit! world res_sink))
  11. )