likyh commented on issue #1433:
URL: 
https://github.com/apache/incubator-devlake/issues/1433#issuecomment-1180211651

   Graphql in GitLab is useful for us. `https://gitlab.com/-/graphql-explorer` 
cannot explore all entities so I suggest filling 
`https://gitlab.com/api/graphql` in graphql tool 
`https://graphiql-online.com/graphiql` to use it.
   
   it's easy to use.
   ```graphql
   query MyQuery {
     project(fullPath: "merico-dev/ee/vdev.co") {
       mergeRequests(first: 100, sort: CREATED_ASC) {
         nodes {
           id
           iid
         }
         pageInfo {
           endCursor
           hasNextPage
         }
         totalTimeToMerge
         count
       }
       id
       name
     }
   }
   ```
   
   


-- 
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