I want to create a category to add inventory item. I use the code given below for creating category it create category but whenever I click on button it create new category with same name. so 1st step is how to check how to check category is already exist or not. and second step is how to add items to that category. here is the code to create category. if someone know how to handle this scenario please let me know with code example. Thanks
Category category = new Category();
category.setName("New Category");
category = cloverConnector.createCategory(category);