Starting to learn Neorg. Had to fix the Walmart screenshots node script. Some notes and TODO items.

This commit is contained in:
Norm Rasmussen
2023-08-10 16:26:17 -04:00
parent b9fe8d640b
commit d683da4ce8
9 changed files with 60 additions and 5 deletions

View File

@ -25,10 +25,10 @@ const getAllGroups = async (num) => {
}
})
.then(async (res) => {
if (res.data.links.next != null) {>
page++;
for (let i = 0; i < res.data.d
if (res.data.data[i].attribu
if (res.data.links.next != null) {
page++;
for (let i = 0; i < res.data.data.length; i++) {
if (res.data.data[i].attributes.status == "live") {
console.log(res.data.data[i].attributes.name)
groupIds.push(res.data.data[i].id)
}