marshallswain / feathers-pinia

Connect your Feathers API to the elegant data store for Vue
52 stars 22 forks source link

Is there any ability to use pipeline on find? #128

Closed krislintigo closed 1 year ago

krislintigo commented 1 year ago

I noticed that pipeline: [...] and paginate: false are ignored

marshallswain commented 1 year ago

There's no built-in support for pipeline. The pipeline feature should only be used on the server side. It's far too powerful and flexible to allow pipeline stages to be passed from the client.

Also, yes. Pagination is ignored to avoid branching logic for types and return values.