split category fetching from menu items
This commit is contained in:
13
src/graphql-documents/category.gql.generated.ts
Normal file
13
src/graphql-documents/category.gql.generated.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
/* eslint-disable */
|
||||
/* Generated by scripts/endpoint-generate.mjs — do not edit by hand */
|
||||
import type { ExecutionResult } from "graphql";
|
||||
|
||||
import { execute } from "../graphql/execute";
|
||||
import type { CategoryQuery, CategoryQueryVariables } from "../graphql/graphql";
|
||||
import { categoryDocument } from "./category.gql";
|
||||
|
||||
export const categoryQuery = {
|
||||
async execute(variables?: CategoryQueryVariables): Promise<ExecutionResult<CategoryQuery>> {
|
||||
return execute<CategoryQuery, CategoryQueryVariables>(categoryDocument, variables);
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user