mirror of
https://github.com/vercel/commerce.git
synced 2025-07-22 12:24:18 +00:00
9 lines
242 B
TypeScript
9 lines
242 B
TypeScript
import { callMedusa } from '@framework/utils/call-medusa'
|
|
|
|
const fetchApi = async (query: string, method: string, variables: any) => {
|
|
const response = await callMedusa(method, query, variables)
|
|
|
|
return response
|
|
}
|
|
export default fetchApi
|