mirror of
https://github.com/vercel/commerce.git
synced 2025-05-18 23:46:58 +00:00
15 lines
409 B
TypeScript
15 lines
409 B
TypeScript
import type { GraphQLFetcher } from '@commerce/api'
|
|
import type { OrdercloudConfig } from '../'
|
|
|
|
import { FetcherError } from '@commerce/utils/errors'
|
|
|
|
const fetchGraphqlApi: (getConfig: () => OrdercloudConfig) => GraphQLFetcher =
|
|
() => async () => {
|
|
throw new FetcherError({
|
|
errors: [{ message: 'GraphQL fetch is not implemented' }],
|
|
status: 500,
|
|
})
|
|
}
|
|
|
|
export default fetchGraphqlApi
|