just found this as the cause of my bug today π
i was trying to query against the relationships service using a query object like
queries.push({
service: 'relationships',
params: {
query: {
sourceId: currentAgent.id
}
}
})
without ALSO passing in relevant relationships actions into the actions object of connect. The result was React silently handling the fail (of the componentDidMount i think?) but to the user of feathers-action-react it just appears as if the query is never executed.
i'd write a PR for this, but unsure how you would want this to throw @ahdinosaur :) can discuss tomorrow perhaps?