michelengelen commented on issue #7510:
URL: 
https://github.com/apache/incubator-devlake/issues/7510#issuecomment-2774896576

   @klesh the last time I checked this was possible with the graphql API from 
github as well.
   This query
   ```graphql
   {
     repository(owner: "mui", name: "mui-x") {
       issues(states: [OPEN], first: 5, orderBy: {field:UPDATED_AT, 
direction:ASC} ) {
         nodes {
           id
           title
           createdAt
           updatedAt
         }
       }
     }
   }
   ```
   
   will give this result:
   
   ```JSON
   {
     "data": {
       "repository": {
         "issues": {
           "nodes": [
             {
               "id": "I_kwDOD4Lzcc5EqRvd",
               "title": "[data grid] Scroll to node?",
               "createdAt": "2022-02-26T16:09:29Z",
               "updatedAt": "2022-02-26T16:16:03Z"
             },
             {
               "id": "I_kwDOD4Lzcc5Gc_3I",
               "title": "[data grid] Keyboard arrow doesn't scroll",
               "createdAt": "2022-03-26T19:27:03Z",
               "updatedAt": "2022-03-28T18:11:14Z"
             },
             {
               "id": "I_kwDOD4Lzcc5IGoTe",
               "title": "[pickers] Improve testability of pickers with custom 
attributes ",
               "createdAt": "2022-04-20T08:47:38Z",
               "updatedAt": "2022-04-21T13:00:59Z"
             },
             {
               "id": "I_kwDOD4Lzcc5Id0PD",
               "title": "[core] Running scripts for grid and pickers 
separately",
               "createdAt": "2022-04-26T10:54:36Z",
               "updatedAt": "2022-04-26T10:54:36Z"
             },
             {
               "id": "I_kwDOD4Lzcc5H3QrS",
               "title": "[data grid] Set cell focus on closest row after 
deleted focused row (maybe optional)",
               "createdAt": "2022-04-15T15:35:36Z",
               "updatedAt": "2022-04-29T17:46:47Z"
             }
           ]
         }
       }
     }
   }
   ```
   
   See that the last entry is actually created before the 4th.
   Could you recheck it with your implementation please?
   
   Thanks!


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to