github.com/turbot/steampipe@v1.7.0-rc.0.0.20240517123944-7cef272d4458/tests/manual_testing/args/with1/with_no_results.sp (about)

     1  
     2  dashboard "with_no_results" {
     3  
     4    container {
     5  
     6      table {
     7        title     = "Relationships"
     8        type      = "graph"
     9        direction = "TD"
    10  
    11        with "no_results" {
    12          sql = "select * from  aws_iam_user where arn = 'noooo'"
    13        }
    14  
    15        query = query.array_arg
    16        args = {
    17          arns =  with.no_results.rows[*].arn
    18        }
    19      }
    20    }
    21  
    22  }