simple-graphql
Version:
The simple way to generates GraphQL schemas and Sequelize models from your models definition.
13 lines (12 loc) • 392 B
TypeScript
import { SGHookOptionsMap, SGPluginConfig, SGPluginOptions } from '../index';
type UpdateMutationOptions = SGPluginOptions & {
name?: string;
hookOptions?: SGHookOptionsMap;
};
declare module '../index' {
interface SGPluginOptionsMap {
updateMutation?: UpdateMutationOptions;
}
}
declare const _default: SGPluginConfig<UpdateMutationOptions>;
export default _default;