Data360 DQ+

 View Only
Expand all | Collapse all

How do I query Aurora PostgreSQL to get the name of a specific Pipeline?

  • 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