mirror of
https://github.com/graphql-hive/console
synced 2026-05-23 00:58:36 +00:00
5 lines
170 B
TypeScript
5 lines
170 B
TypeScript
import { NextApiRequest, NextApiResponse } from 'next';
|
|
|
|
export default async function graphql(req: NextApiRequest, res: NextApiResponse) {
|
|
res.status(200).json({});
|
|
}
|