1
0
mirror of https://github.com/vercel/commerce.git synced 2025-07-25 03:01:22 +00:00
Files
commerce/components/filters/actions.ts
2024-07-05 10:59:50 +07:00

13 lines
270 B
TypeScript

'use server';
import { getAllMetaobjects } from 'lib/shopify';
export const fetMetaobjects = async (type: string) => {
try {
const data = await getAllMetaobjects(type);
return data;
} catch (error) {
console.log('fetMetaobjects action', error);
}
};