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
{{ message }}
This repository has been archived by the owner on May 8, 2020. It is now read-only.
Currently the Query type passed to store.findMany is undefined. It needs to be a common interface that makes sense in any store, not just the database store.
It needs to be mappable to typeorm's FindOptions
It must be transportable over json
Considerations for security must be taken (probably avoiding all join capabilities to avoid entity permission leak)
Consider severely limiting to force controllers to do the querying if security concerns are too great
Another comment by zakhenry
Consider graphql, it makes sense across multiple database scheme & transports. Tough part may be data hydration
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Currently the
Query
type passed tostore.findMany
is undefined. It needs to be a common interface that makes sense in any store, not just the database store.FindOptions
Another comment by zakhenry
The text was updated successfully, but these errors were encountered: