Skip to main content

Community

Connector Improvement: Linear: Add Project Labels Endpoint

Answered

Please sign in to leave a comment.

Comments

3 comments

  • Official comment

    Hi Brandon,

    Thank you for taking the time to share your feature request regarding the addition of the new Project Labels object to our Fivetran connector for Linear. We greatly appreciate your input and are always looking to improve our offerings based on valuable customer feedback.

    I wanted to let you know that your request has been officially added to our backlog. As with all feature requests, we will prioritize this based on the level of demand from our community and customers. Rest assured, we are committed to keeping you updated on any developments related to this feature.

    Thank you once again for contributing to our community. If you have any more suggestions or questions, feel free to reach out.

    Best regards,  
    Syead Mujtaba Imam Rizwi

    We are currently blocked by this - please add!

    It would be really helpful to add this feature to make reporting better.

    It seems a pretty simple add from their API:

     

    ```

    query CustomerGapProjects {
      projects(filter: {
        projectLabels: {
          name: { eq: "Customer_Gap" }
        }
      }) {
        nodes {
          id
          name
          state
          completedAt
          createdAt
        }
      }
    }

    ```