deleteResolver method
Deletes a Resolver object.
May throw BadRequestException.
May throw ConcurrentModificationException.
May throw InternalFailureException.
May throw NotFoundException.
May throw UnauthorizedException.
Parameter apiId :
The API ID.
Parameter fieldName :
The resolver field name.
Parameter typeName :
The name of the resolver type.
Implementation
Future<void> deleteResolver({
required String apiId,
required String fieldName,
required String typeName,
}) async {
final response = await _protocol.send(
payload: null,
method: 'DELETE',
requestUri:
'/v1/apis/${Uri.encodeComponent(apiId)}/types/${Uri.encodeComponent(typeName)}/resolvers/${Uri.encodeComponent(fieldName)}',
exceptionFnMap: _exceptionFns,
);
}