I have a Product entity about 30 fields. I like to use EntityGraph to fetch product list except its description that is a CLOB.
I have to add 29 other properties to the EntityGraph. Is there a way to say: all properties except property A?
EntityGraph<Product> graph = em.createEntityGraph(Product.class);
graph.addAttributeNodes("id", "name", "size", .....);
Thanks.