jirutka / rsql-parser

Parser for RSQL / FIQL – query language for RESTful APIs
739 stars 156 forks source link

How to use for Abstract Class ? #59

Open vedant280 opened 10 months ago

vedant280 commented 10 months ago

Suppose We have 3 classes public abstract class Shape { { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; private String name; }

public class Circle extends Shape { private double radius; }

public class Book { private Shape shape; }

How can i find Radius using Specification written for BOOK