Better UX for Custom Lists

This commit is contained in:
Rob Walsh
2026-03-02 13:45:16 -07:00
parent f45f31b49c
commit b940ad39f9
8 changed files with 649 additions and 548 deletions
+12
View File
@@ -0,0 +1,12 @@
const axios = require('axios');
async function run() {
try {
const res = await axios.post('https://api.hardcover.app/v1/graphql', {
query: "{ __schema { types { name } } }"
});
console.log(res.data);
} catch(e) {
console.log(e.response ? e.response.data : e.message);
}
}
run();