-
-
Notifications
You must be signed in to change notification settings - Fork 570
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: simple collections and massive perf gains on small queries (#766)
* Allow disabling the query log * Don't parse URL multiple times * More efficient * Marginal boost * Fence debug statements * Make body-parser middleware more optimisable * Precompute * Cache query validation * Minor optimisation * Simple collections CLI options * Minor perf tweaks * More efficient localSettings * Only create DB transactions if necessary * Skip transactions where possible for greater performance * Fix tests and JSON handling in JWTs * No need to provision pgClient if an error occurs * Upgrade postgraphile-core
- Loading branch information
Showing
8 changed files
with
321 additions
and
153 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "postgraphile", | ||
"version": "4.0.0-beta.9", | ||
"version": "4.0.0-beta.9.3", | ||
"description": "A GraphQL schema created by reflection over a PostgreSQL schema 🐘 (previously known as PostGraphQL)", | ||
"author": "Benjie Gillam <[email protected]> (https://twitter.com/benjie)", | ||
"license": "MIT", | ||
|
@@ -43,11 +43,12 @@ | |
"http-errors": "^1.5.1", | ||
"jsonwebtoken": "^8.0.0", | ||
"lodash": ">=3.5 <5", | ||
"lru-cache": "4.1.3", | ||
"parseurl": "^1.3.1", | ||
"pg": ">=6.1.0 <8", | ||
"pg-connection-string": "^0.1.3", | ||
"pg-sql2": "2.0.0", | ||
"postgraphile-core": "4.0.0-beta.7", | ||
"postgraphile-core": "4.0.0-beta.7.2", | ||
"send": "^0.16.1", | ||
"tslib": "^1.5.0" | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.