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
I'm using feathers-objection on the server side and using a modifier for a complex filtering task. It returns the correct data from the server, but the fetchParams for the store has no concept of how the modifier works so it simply returns all the data in the find getter.
How do I get the Vuex store find getter to filter the data, or can I just simply tell it to always use all the data returned from the server?
The modifier looks like this on the client inside the fetchParams:
What is basically does on the server is find all children of a parent attribute, so the attribute id is sent to the server and it recursively finds all the child attributes. The attributes simply have a parent_id column in the same attribute table.
The text was updated successfully, but these errors were encountered:
Hi!
I'm using feathers-objection on the server side and using a modifier for a complex filtering task. It returns the correct data from the server, but the fetchParams for the store has no concept of how the modifier works so it simply returns all the data in the find getter.
How do I get the Vuex store find getter to filter the data, or can I just simply tell it to always use all the data returned from the server?
The modifier looks like this on the client inside the
fetchParams
:What is basically does on the server is find all children of a parent attribute, so the attribute id is sent to the server and it recursively finds all the child attributes. The attributes simply have a parent_id column in the same attribute table.
The text was updated successfully, but these errors were encountered: