Skip to content

Commit

Permalink
chore: add export parquet and fixes to fetch-data-gql
Browse files Browse the repository at this point in the history
  • Loading branch information
karlprieb committed Dec 13, 2024
1 parent 72c9922 commit a970197
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
test-results.xml
/scripts/import-data/bundles
/scripts/import-data/transactions
/scripts/import-data/parquet

# Generated docs
/docs/sqlite/bundles
Expand Down
3 changes: 3 additions & 0 deletions src/routes/ar-io.ts
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,7 @@ arIoRouter.put(
arIoRouter.post('/ar-io/admin/queue-tx', express.json(), async (req, res) => {
try {
const { id } = req.body;
console.log({ id });
if (id === undefined) {
res.status(400).send("Must provide 'id'");
return;
Expand All @@ -205,6 +206,8 @@ arIoRouter.post(
try {
const { id } = req.body;

console.log({ id });

if (id === undefined) {
res.status(400).send("Must provide 'id'");
return;
Expand Down

0 comments on commit a970197

Please sign in to comment.