Code Monkey home page Code Monkey logo

knex-relay-cursor-pagination's People

Contributors

brietsparks avatar dependabot[bot] avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

knex-relay-cursor-pagination's Issues

Multiple sorts & duplicate values in sort fields

Hey,

Thank you for this amazing package! I've been trying to migrate from Prisma to Mikro-ORM due to a huge problem. Just wanted to ask, I see it's not implemented yet, but is it possible to sort by multiple columns? Also, I notice there is an issue while sorting by fields tha have repeated values: it just skips some rows.

Regards

Error: the queried row count exceeds the expected limit based on the pagination params

Hi,

I always get the following error: the queried row count exceeds the expected limit based on the pagination params

Am I doing something incorrect? I don't understand.

Database: PostgreSQL 15
Node: 18.14
OS: Windows 10
I'm not using Typescript but only Javascript

Here is what I'm doing

  const pagination = createPagination({
    from: 'user',
    sortColumn: 'first_name',
    sortDirection: 'desc',
    cursorColumn: 'id',
    first: 10,
  });

  const rows = databaseConnection
    .select(
      'user.id',
      'user.email',
      'user.first_name',
      'user.last_name',
    )
    .from('user')
    .where(
      pagination.where.column,
      pagination.where.comparator,
      pagination.where.value,
    )
    .orderBy(pagination.orderBy.column, pagination.orderBy.direction)
    .limit(pagination.limit);

  return pagination.getPage(rows);

However, my query returns more than 300 users when I run rows directly.

 databaseConnection
    .select(
      'user.id',
      'user.email',
      'user.first_name',
      'user.last_name',
    )
    .from('user')

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.