Data360 DQ+

Welcome to the Data360 DQ+ community!  Please feel free to start a discussion in the discussion tab or join in a conversation.

Here are some useful links where you can find more information:

Product Announcements  Product Documentation  Ideas Portal

Discussions

Members

Resources

Events

 View Only
  • 1.  How do I query Aurora PostgreSQL to get the name of a specific Pipeline?

    Posted 09-15-2021 05:04
    How do I query Aurora PostgreSQL to get the name of a specific Pipeline?


  • 2.  RE: How do I query Aurora PostgreSQL to get the name of a specific Pipeline?

    Employee
    Posted 09-22-2021 10:59

    Hi William,

    This may be accomplished through an API query, where the team would receive the details via the UI API console. For example :

    query{
    pipelineByName( envNameOrId:1010,name:"ENV_Test")
    {
    name
    stages{
    nodes {
    name
    itemId
    stageType
    stageId
    }
    }
    }
    }

    Additional details may be found within the following article :

    Using the API Console in DQ+

    Matthew Kennedy