-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tidy up internal Prisma types #9053
Conversation
filter: notOmit && defaultIsFilterable, | ||
orderBy: notOmit && defaultIsOrderable, | ||
filter: notOmit ? defaultIsFilterable : false, | ||
orderBy: notOmit ? defaultIsOrderable : false, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was confusing, &&
technically worked, but, the point is that it is false
or a function
This pull request is automatically built and testable in CodeSandbox. To see build info of the built libraries, click here or the icon next to each commit SHA. Latest deployment of this branch, based on commit c7aecb4:
|
This pull request tidies up a number of internal Prisma types that were duplicated, and often out-of-date. An explicit
as any
is replacing the two locations where the type was used, and the remaining boilerplate removed.An internal
new WeakMap
mapping the Prisma namespaces to Keystone contexts has been removed too.