Parse-dashboard: Lazy load scroll not working

Created on 27 Oct 2019  路  3Comments  路  Source: parse-community/parse-dashboard

Hi, Im using Parse Dashboard 2.0.5 and Parse server 3.9.0 and I cant see more than 200 rows.
Any idea?

needs investigation wontfix

Most helpful comment

We are having the same issue, the request for the next page fails with this error:

{"code":119,"error":"Postgres doesn't support this query type yet {}"}

This is the payload for the request, in case it might be helpful:

{
  where: {
    $or: [
      { createdAt: {} },
      { createdAt: { $exists: false, $lt: { __type: 'Date', iso: '2019-11-19T15:42:28.306Z' } } }
    ]
  },
  limit: 200,
  order: '-createdAt,-createdAt',
  _method: 'GET',
  _ApplicationId: '...',
  _ClientVersion: 'js2.8.0',
  _MasterKey: '...',
  _InstallationId: '...'
}

Versions:

"parse-dashboard": "2.0.4",
"parse-server": "3.9.0",

All 3 comments

We are having the same issue, the request for the next page fails with this error:

{"code":119,"error":"Postgres doesn't support this query type yet {}"}

This is the payload for the request, in case it might be helpful:

{
  where: {
    $or: [
      { createdAt: {} },
      { createdAt: { $exists: false, $lt: { __type: 'Date', iso: '2019-11-19T15:42:28.306Z' } } }
    ]
  },
  limit: 200,
  order: '-createdAt,-createdAt',
  _method: 'GET',
  _ApplicationId: '...',
  _ClientVersion: 'js2.8.0',
  _MasterKey: '...',
  _InstallationId: '...'
}

Versions:

"parse-dashboard": "2.0.4",
"parse-server": "3.9.0",

I can confirm I got the same problem.

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

Was this page helpful?
0 / 5 - 0 ratings