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
but in front end , if LensProcessConfigItemFilterParameter don't allow me using lensProcessOptionId i have to write below Query
extendtypeQuery{"Query all lens process template config item list"lensProcessConfigItems(// manually add it as parameterlensProcessTemplateId: ID// manually add it as parameterlensProcessOptionId: IDoptions: LensProcessConfigItemListOptions): LensProcessConfigItemList!
manually add
lensProcessTemplateId: ID
lensProcessOptionId: ID
in fact if the options (LensProcessConfigItemListOptions) can list ID type as listOption, i can avoid this duplicated works
Describe the solution you'd like
Allow ID type can be list on XXX FilterParameter, For a filter on ID, it would make sense to allow it to be filtered by:
Equals
Not equals
In
Not in
Additional context
vendure@ v1.4.0-beta.0
The text was updated successfully, but these errors were encountered:
To be honest I don't quite get what you need. I don't get why you have both lensProcessOption and lensProcessOptionId. I think you can just use @JoinColumn() to indicate that the you want the id (foreign key) to be on this side of the relation.
Do you want "smarter" generated FilterOptions for paginated lists?
because it can be auto list on graphqlxxxxFilterParameter( lensProcessOptionId if type is number or string) in the front, i don't need wirte duplicated Query parameter to do this. but in some case i don't want to defined lensProcessOptionId as number or string type, i want to defined type as ID
Is your feature request related to a problem? Please describe.
Allow
ID
type can be list onxxxxFilterParameter
, For filterID
allow it to be filtered by Equals, Not equals,In,NotInin some case like below i have
entity
as follow codein service layer i have below code
the query Builder , options it support me query filter like
but in front end , if LensProcessConfigItemFilterParameter don't allow me using
lensProcessOptionId
i have to write belowQuery
manually add
in fact if the options (LensProcessConfigItemListOptions) can list ID type as listOption, i can avoid this duplicated works
Describe the solution you'd like
Allow
ID
type can be list onXXX FilterParameter
, For a filter on ID, it would make sense to allow it to be filtered by:Equals
Not equals
In
Not in
Additional context
vendure@ v1.4.0-beta.0
The text was updated successfully, but these errors were encountered: