Don't fail when collections are not found (#996)

* Don't fail when collections are not found

* fix another error
This commit is contained in:
Tobias Lins
2023-04-26 16:26:52 +02:00
committed by GitHub
parent af21b29b73
commit 9ea5671579
3 changed files with 7 additions and 2 deletions

View File

@@ -265,6 +265,11 @@ export async function getCollectionProducts(handle: string): Promise<Product[]>
}
});
if (!res.body.data.collection) {
console.log('No collection found for handle', handle);
return [];
}
return reshapeProducts(removeEdgesAndNodes(res.body.data.collection.products));
}