part of 'server_api.dart'; mixin ServerActionsApi on GraphQLApiMap { Future _commonBoolRequest(final Function graphQLMethod) async { QueryResult response; bool result = false; try { response = await graphQLMethod(); if (response.hasException) { print(response.exception.toString()); result = false; } else { result = true; } } catch (e) { print(e); } return result; } Future> reboot() async { DateTime? time; try { final GraphQLClient client = await getClient(); final response = await client.mutate$RebootSystem(); if (response.hasException) { print(response.exception.toString()); } if (response.parsedData!.rebootSystem.success) { time = DateTime.now().toUtc(); } } catch (e) { print(e); return GenericResult(data: time, success: false); } return GenericResult(data: time, success: true); } Future pullConfigurationUpdate() async { try { final GraphQLClient client = await getClient(); return await _commonBoolRequest( () async => client.mutate$PullRepositoryChanges(), ); } catch (e) { return false; } } Future upgrade() async { try { final GraphQLClient client = await getClient(); return _commonBoolRequest( () async => client.mutate$RunSystemUpgrade(), ); } catch (e) { return false; } } Future apply() async { try { final GraphQLClient client = await getClient(); await client.mutate$RunSystemRebuild(); } catch (e) { print(e); } } }