Example #1
0
 public async Task DeleteProduct(string id)
 {
     await _client.DeleteProductMutationAsync(new Optional <DeleteProductInput>(new DeleteProductInput
     {
         Id = id.ConvertTo <Guid>()
     }));
 }