You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public Page<Season> seasons(@Argument Pageable pageable) {. .. }
and a corresponding class:
@Data
public class Pageable {
private int first;
private int offset
}
when querying:
query {
seasons(first:5, offset:10) {
..
}
}
the pageable object in the controller is null unfortunately.
I think the reason is that it will look for a pageable input variable and will not look for the individual first and offset fields.