microscopic-room-90690
08/14/2023, 7:43 AMcolumn name = "id" , while it can be reached if I modify the url directly. I want to know if there is a guidance that introduce the rules used for url, if so, I can concatenate url by my own and do searching more flexiblyaloof-gpu-11378
08/17/2023, 1:16 AMbulky-soccer-26729
08/17/2023, 2:49 PMbulky-soccer-26729
08/17/2023, 2:56 PM?filter_fieldPaths___false___CONTAIN___0=id
where we prefix with filter_ and then comes the field that we're filtering on (fieldPaths in this case which is the elastic search name for column name) then it's whether or not this condition is negated (whether it's NOT this condition or IS this condition - in this case that's false). Then we have the filter opterator (this case it's CONTAIN). Finally the last piece is just the index of the filter in the URLmicroscopic-room-90690
08/18/2023, 3:04 AM?filter_fieldPaths___false___CONTAIN___0=id like what shown in the below screenshot 1. While the column it matched is instance_id and what I want is only id.
To get what I want, I don't find there is a choose to set column name = "id" in the UI but I can modify the url directly and use ?filter_fieldPaths___false___EQUAL___0=id and it works.bulky-soccer-26729
08/18/2023, 3:20 PMmicroscopic-room-90690
08/21/2023, 2:37 AMurl by my own which can cover all of the search request.bulky-soccer-26729
08/21/2023, 2:28 PMmicroscopic-room-90690
08/22/2023, 1:19 AMaloof-gpu-11378
08/22/2023, 2:14 PMnavigateToSearchUrl from several different places in the frontend when we need to search with some filters/query. it's located here /datahub/datahub-web-react/src/app/search/utils/navigateToSearchUrl.tsaloof-gpu-11378
08/22/2023, 2:14 PMmicroscopic-room-90690
08/30/2023, 9:07 AM'SEARCH__' and 'EXACT__' ? When I search something I find it just uses 'filter_' like search?filter_platform___false___EQUAL___0=urn%3Ali%3AdataPlatform%3Ahive
2. what's the difference between 'fieldDescriptions' and 'editedFieldDescriptions' , 'fieldTags' and 'editedFieldTags'
3. how to *show data whose fieldtag contains tagA or tagB*_,_ I tested filter_fieldTags___false___CONTAIN___0=tagA,tagB and filter_fieldTags___false___CONTAIN___0=urn:li:tag:tagA,urn:li:tag:tagB but both of them didn't work
4. how to show data whose fieldtag contains tagA and tagB, I tested filter_fieldTags___false___EQUAL___0=tagA,tagB and `filter_fieldTags___false___EQUAL___0=urnlitagtagA,urnlitagtagB`but both of them didn't work
5. how to show data whose schema is schemaA, I attempted it but it seems the URN of schema is unrelated with the schema name
6. how to show tables named DB.table1 if it exists in different sources and I want all of them
7. how to show tables like DB.table1, I find that if I search a table in search bar, it will show all the data related to the table name, including the tables whose name are similar with that tablemicroscopic-room-90690
09/12/2023, 9:36 AM