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
Current implementation needs to define select properties to use select in query params
I want to get all available properties but when I need to select some fields use select in query params and return selected properties
I have a big entity with many fields and relations and most of the time I need all results but in some cases like "select inputs" I just need the id and name, I cannot use the select param until I define explicitly select the property in the configuration
The text was updated successfully, but these errors were encountered:
currently, with the above config, we can get all information we need but in some cases we need to select only some properties. As you can see information we need is too much with relations so I can't specify select property in the pagination config
I want to use a query something like the following
to only select ID and name, but with the current implementation, we should specify selectable fields in the configuration to able to use select in query params
Current implementation needs to define select properties to use select in query params
I want to get all available properties but when I need to select some fields use
select
in query params and return selected propertiesI have a big entity with many fields and relations and most of the time I need all results but in some cases like "select inputs" I just need the id and name, I cannot use the select param until I define explicitly select the property in the configuration
The text was updated successfully, but these errors were encountered: