Describe the bug
i need to set populateHierarchy to false but i cant
|
@GET |
|
@Produces(MediaType.APPLICATION_JSON) |
|
@Consumes(MediaType.APPLICATION_JSON) |
|
List<GroupRepresentation> groups(@QueryParam("search") String search, |
|
@QueryParam("exact") Boolean exact, |
|
@QueryParam("first") Integer first, |
|
@QueryParam("max") Integer max, |
|
@QueryParam("briefRepresentation") @DefaultValue("true") boolean briefRepresentation, |
|
@QueryParam("subGroupsCount") @DefaultValue("true") Boolean subGroupsCount); |
GroupsResource.query() has populateHierarchy, but doesnt have search
|
@GET |
|
@Produces(MediaType.APPLICATION_JSON) |
|
List<GroupRepresentation> query(@QueryParam("q") String searchQuery, |
|
@QueryParam("populateHierarchy") boolean populateHierarchy, @QueryParam("first") Integer first, |
|
@QueryParam("max") Integer max, @QueryParam("briefRepresentation") boolean briefRepresentation); |
Version
26.0.12
Expected behavior
use search and populateHierarchy together
Actual behavior
use groupsResource.search() with search but without populateHierarchy, or use groupsResource.query() with populateHierarchy but without search
How to Reproduce?
No response
Anything else?
No response
Describe the bug
i need to set
populateHierarchyto false but i cantkeycloak-client/admin-client/src/main/java/org/keycloak/admin/client/resource/GroupsResource.java
Lines 106 to 114 in bb57a72
GroupsResource.query()haspopulateHierarchy, but doesnt havesearchkeycloak-client/admin-client/src/main/java/org/keycloak/admin/client/resource/GroupsResource.java
Lines 190 to 194 in bb57a72
Version
26.0.12
Expected behavior
use
searchandpopulateHierarchytogetherActual behavior
use
groupsResource.search()withsearchbut withoutpopulateHierarchy, or usegroupsResource.query()withpopulateHierarchybut withoutsearchHow to Reproduce?
No response
Anything else?
No response