Mapping dashboard id between GraphQL and PostgreSQL in Tableau Server

Viewed 33

In order to develop my application, I am trying to get dashboard data using GraphQL from Tableau Server. My sample GraphQL is like below,

{
    dashboard {
        id
        luid
        name
    }
}

From GraphQL, I get a result like below.

{
    “data”: {
        “dashboards”: [
            {
                “id”: “0001a27e-6429-c8b7-0d29-644b2ca00e76”,
                “luid”: “8291u72j-9281-c9d8-0r83-098i2jx82i00”,
                “name”: “TestDashboard”
            }
        ]
    }
}

Can I get dashboard id “0001a27e-6429-c8b7-0d29-644b2ca00e76” (not luid) from PostgreSQL in Tableau Server? If possible, what table in PostgreSQL do I check?

Thank you for your help.

0 Answers
Related