Giter VIP home page Giter VIP logo

Comments (3)

PowerKiKi avatar PowerKiKi commented on June 3, 2024

Implemented in 46f4f16

from graphql-doctrine.

sambaptista avatar sambaptista commented on June 3, 2024

Seems to have a bug...

{
  bookings(filter:{}, 
    sorting:[{field:endDate, order:DESC, nullAsHighest:false}]) {
    items {
      id
      endDate
    }
  }
}

Returns

        {
          "id": "4012",
          "endDate": "2019-02-07T16:15:03+01:00"
        },
        {
          "id": "4000",
          "endDate": "2018-01-01T18:21:43+01:00"
        },
        {
          "id": "4001",
          "endDate": null
        },

And it's correct, but with nullAsHighest:true all results are reversed (= same as default ASC) :

        {
          "id": "4011",
          "endDate": null
        },
        {
          "id": "4000",
          "endDate": "2018-01-01T18:21:43+01:00" 
        },
        {
          "id": "4012",
          "endDate": "2019-02-07T16:15:03+01:00"
        }

Expectations is that endDate.DESC should return first 2019 (id 4012), then 2018 (id 4000) whatever nullAsHighest is true or false. When true, only the null values should display before the 2019.

Used here :
Ecodev/my-ichtus@683828a

from graphql-doctrine.

PowerKiKi avatar PowerKiKi commented on June 3, 2024

You should specify two sortings. One for the null values, and one for the "normal" sorting.

Fixed in Ecodev/my-ichtus@6e70748

So using ASC order will give you null values at the end:

{
  bookings(sorting: [
    {field: endDate, order: ASC, nullAsHighest: true},
    {field: endDate, order: ASC}
  ]) {
    items {
      id
      endDate
    }
  }
}
{
  "data": {
    "bookings": {
      "items": [
        {
          "id": "4000",
          "endDate": "2018-01-01T18:21:43+11:00"
        },
        {
          "id": "4001",
          "endDate": "2019-02-07T18:16:55+11:00"
        },
        {
          "id": "4012",
          "endDate": null
        }
      ]
    }
  }
}

And using DESC order will give you the null values at the beginning:

{
  bookings(sorting: [
    {field: endDate, order: DESC, nullAsHighest: true},
    {field: endDate, order: DESC}
  ]) {
    items {
      id
      endDate
    }
  }
}
{
  "data": {
    "bookings": {
      "items": [
        {
          "id": "4012",
          "endDate": null
        },
        {
          "id": "4001",
          "endDate": "2019-02-07T18:16:55+11:00"
        },
        {
          "id": "4000",
          "endDate": "2018-01-01T18:21:43+11:00"
        }
      ]
    }
  }
}

from graphql-doctrine.

Related Issues (20)

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.