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

   all products of Atlassian, such as Jira, Confluence, and Bitbucket, have the 
same GraphQl API. It has 2 endpoints:
   1. to run manually: 
https://developer.atlassian.com/platform/atlassian-graphql-api/graphql/explorer/
   2. to explore: https://api.atlassian.com/graphql
   
   bitbucket:
   ```graphql
   query MyQuery {
     bitbucket {
       bitbucketWorkspace(
         id: 
"ari:cloud:bitbucket::workspace/d1762eb7-0305-41b6-be9e-832ad8dcc7d4"
       ) {
         id
         name
         repositories(first: 10000) {
           nodes {
             id
             name
             webUrl
           }
         }
       }
     }
   }
   ```
   
   jira:
   ```
   TODO
   ```
   
   But there is a question that they are not complete in some APIs. And there 
is no complete document on how to use it.
   
   
https://developer.atlassian.com/platform/atlassian-graphql-api/graphql/#overview


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