Querying Database for Table Names in a GQL Query

Original Slack Thread

how to get a gql query to get all the table names of ingested database?

              search(input: {type: DATASET, 
               query: "*", start: 0, count: 10
                  orFilters: [
                  {
                    and: [
                    {
                          field: "platform"
                          values: ["redshift"]
                          condition: CONTAIN
                      }
                    ]
                  }
                ]
              }
              ){
                start
                count
                total
                searchResults {
                  entity {
                    urn
                    ... on Dataset {
                      urn
                      name
                      }
                    }
                  }
                }
            }```