14 lines
544 B
TypeScript
14 lines
544 B
TypeScript
/* 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);
|
|
},
|
|
};
|