Filipe Sales
05/28/2024, 2:00 PMkapa.ai
05/28/2024, 2:00 PMProjectV2Field
, ProjectV2Item
, ProjectV2ItemContent
, and ProjectV2ItemField*
([source](https://github.com/airbytehq/airbyte/issues/35618)). 3. Current Status: As of the latest information, it appears that the detailed data for ProjectsV2 is not yet supported by the GitHub connector in Airbyte. The issue is open and being tracked, but the detailed fields you are looking for are not currently available through the connector. ### What You Can Do - Track the Issue: Keep an eye on the GitHub issue [#35618](https://github.com/airbytehq/airbyte/issues/35618) for updates on when support for detailed ProjectsV2 data might be added. - Manual Workaround: As a temporary solution, you might consider manually implementing GraphQL queries to access the detailed ProjectsV2 data from GitHub, although this is not as integrated as using the Airbyte connector. ### Example GraphQL Query If you decide to go the manual route, here's an example of a GraphQL query to fetch detailed ProjectsV2 data: graphql { user(login: "your-username") { projectV2(number: 1) { title items(first: 10) { nodes { content { ... on Issue { title createdAt priority: fieldValueByName(name: "Priority") { ... on ProjectV2ItemFieldSingleSelectValue { name } } points: fieldValueByName(name: "Points") { ... on ProjectV2ItemFieldNumberValue { number } } startDate: fieldValueByName(name: "Start Date") { ... on ProjectV2ItemFieldDateValue { date } } } } } } } } }
This query fetches the title, priority, points, and start date for issues in a specific project. For more detailed instructions on setting up the GitHub connector, you can refer to the [Airbyte documentation](https://docs.airbyte.com/integrations/sources/github#step-2-set-up-the-github-connector-in-airbyte). If you have any further questions or need additional assistance, feel free to ask!