### Eestikeelsete ülevaadete salvestamine markdown faili ```bash curl -s http://100.80.222.54:9020/v1/graphql \ -X POST \ -H "Content-Type: application/json" \ -d '{ "query": "{ Get { ScientificArticle { title source_file summary_et } } }" }' \ | jq -r '.data.Get.ScientificArticle[] | "\n## " + .title + "\n\n" + "**Source:** " + .source_file + "\n\n" + .summary_et' \ > ~/Downloads/articles_summary_et.md ```