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
Currently, if there are references in a ParameterContainer, one must first resolve all the References, then filter out the Parameters, and then if one wants to keep the concept of shared parameters in the context, one has to iterate over the resolved and filtered ParameterContainer to get the Ids of the corresponding Parameters in the original ParameterContainer and filter it with this set of keys, which is painful.
Adding the following method:
container.filterWithReference(store,constraints)
would simplify this process greatly.
Note: There are currently no formats that we support where this is needed, but with the addition of swagger v3, it could potentially appear.
The text was updated successfully, but these errors were encountered:
Currently, if there are references in a ParameterContainer, one must first
resolve
all the References, thenfilter
out the Parameters, and then if one wants to keep the concept of shared parameters in the context, one has to iterate over the resolved and filtered ParameterContainer to get the Ids of the corresponding Parameters in the original ParameterContainer and filter it with this set of keys, which is painful.Adding the following method:
would simplify this process greatly.
Note: There are currently no formats that we support where this is needed, but with the addition of swagger v3, it could potentially appear.
The text was updated successfully, but these errors were encountered: