@symanticreative/vendure-admin-client
Version:
A TypeScript GraphQL client for Vendure Admin API to create custom dashboards
9 lines (8 loc) • 708 B
TypeScript
/**
* GraphQL query for getting admin settings
*/
export declare const GET_ADMIN_SETTINGS = "\n query GetGlobalSettings {\n globalSettings {\n id\n availableLanguages\n trackInventory\n outOfStockThreshold\n serverConfig {\n timeZone\n customFields\n }\n }\n }\n";
/**
* GraphQL mutation for updating admin settings
*/
export declare const UPDATE_ADMIN_SETTINGS = "\n mutation UpdateGlobalSettings($input: UpdateGlobalSettingsInput!) {\n updateGlobalSettings(input: $input) {\n id\n availableLanguages\n trackInventory\n outOfStockThreshold\n serverConfig {\n timeZone\n customFields\n }\n }\n }\n";