Skip to content

Huararanga/postgraphile-large-input

 
 

Repository files navigation

Large input issue

How to reproduce

Install dependencies:

  1. run server with any db, tested "updateListByMovements" does not relay on db

yarn postgraphile -c postgres://...

  1. Put this query into RURU
mutation UpdateDial($input: UpdateListByMovementsInput!) {
    updateListByMovements(input: $input) {
      __typename
    }
}
  1. use query-data.json contents as variables

Current behavior: Unusable performance for first query. It takes about 1 minute, second is takes about 500ms. More or less same code was working in postgraphile V4 without any issues

Expected behavior:

  • Faster responses, especially for first query

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 86.7%
  • TypeScript 13.3%