-
-
Notifications
You must be signed in to change notification settings - Fork 129
feat(graphile-utils): Type update on addPgTableOrderByPlugin #628
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
Conversation
* feat(omit) take "many" on constraints into account Closes #505. * move `@omit many` constraint condition to "many" relations only and simplify the conditions a bit, outdenting `makeField` by one level Co-authored-by: Benjie Gillam <[email protected]>
Co-authored-by: Benjie Gillam <[email protected]>
BREAKING CHANGE: New minimum Node version is Node v10.18.0
|
Interestingly when I run yarn lint:fix, it also fixed a bunch of README.md file's js syntax. for the purpose of this PR, I did not commit those. |
|
Maybe you have prettier installed globally and it's using that rather than ours? 🤷 |
|
Please could you rebase this on the |
|
The rebasing got a lot of conflicts, I didn't want to mess up other stuff so I made another PR from v4 to v4. #629 |
The current
makeAddPgTableOrderByPluginprovie a utilility functionorderByAscDesc. The current typescript only allows either astringor aSQLelement to be passed in, but the code actually handles the case (and it is also in the doc) to pass in a function{queryBuilder} => SQL. This PR updates that typescript definition of the function and also the orderbySpec.