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
Because we can't ask for a single attribute on a plural association and if we don't have an exposed virtual attribute, I think this would require us to bring back the whole collection proxy with all of their attributes (all vms with all of their real attributes) in order to get just one or two.
our virtual attributes only really allow you to do a single child attribute. It is because we implement them as sub queries and sql subqeries only handle a single value per row. Maybe we can do better with postgres functions to convert to sql arrays.
This issue has been automatically marked as stale because it has not been updated for at least 3 months.
If you can still reproduce this issue on the current release or on master, please reply with all of the information you have about it in order to keep the issue open.
Thank you for all your contributions! More information about the ManageIQ triage process can be found in the triage process documentation.
Because we can't ask for a single attribute on a plural association and if we don't have an exposed virtual attribute, I think this would require us to bring back the whole collection proxy with all of their attributes (all vms with all of their real attributes) in order to get just one or two.
This doesn't work:
Results in calling
name
on the collection proxy, resulting in the name of the collection, not an array of names for each Vm.Meanwhile, singular associations work:
Related to #805
The text was updated successfully, but these errors were encountered: