Details
-
Improvement
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
0.8.1
-
None
Description
Currently there is placeholder content in the help popup dialog for Advanced search. Placeholder need to be removed to make the help more useful and the placeholders need to be replaced with relevant content such as from Apache Atlas wiki for DSL search http://atlas.apache.org/Search.html
DSL Examples
For the model,
Asset - attributes name, owner, description
DB - supertype Asset - attributes clusterName, parameters, comment
Column - extends Asset - attributes type, comment
Table - supertype Asset - db, columns, parameters, comment
Classifications - PII, Log Data
DSL queries: * from DB
- DB where name="Reporting" select name, owner
- DB where name="Reporting" select name, owner orderby name
- DB where name="Reporting" select name limit 10
- DB where name="Reporting" select name, owner limit 10 offset 0
- DB where name="Reporting" select name, owner orderby name limit 10 offset 5
- DB where name="Reporting" select name, owner orderby name desc limit 10 offset 5
- DB has name
- DB is JdbcAccess
- Column where Column isa PII
- Table where name="sales_fact", columns
- Table where name="sales_fact", columns as column select column.name, column.dataType, column.comment
- DB groupby(owner) select owner, count()
- DB groupby(owner) select owner, max(name)
- DB groupby(owner) select owner, min(name) from Person select count() as 'count', max(Person.age) as 'max', min(Person.age) as 'Log Data'
Attachments
Issue Links
- Is contained by
-
ATLAS-2102 Atlas UI Improvements: Search results page
- Resolved