Skip to content

Commit

Permalink
Bug fix on Dashboard detail Cypher query (#129)
Browse files Browse the repository at this point in the history
* Bug fix on Dashboard detail Cypher query

* Update

* Update
  • Loading branch information
jinhyukchang authored Apr 17, 2020
1 parent f919fcd commit d735f09
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion metadata_service/proxy/neo4j_proxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -1079,7 +1079,7 @@ def get_dashboard(self,
OPTIONAL MATCH (d)-[:LAST_UPDATED_AT]->(t:Timestamp)
OPTIONAL MATCH (d)-[:OWNER]->(owner:User)
WITH c, dg, d, description, last_exec, last_success_exec, t, collect(owner) as owners
OPTIONAL MATCH (d)-[:TAG]->(tag:Tag)
OPTIONAL MATCH (d)-[:TAGGED_BY]->(tag:Tag)
WITH c, dg, d, description, last_exec, last_success_exec, t, owners, collect(tag) as tags
OPTIONAL MATCH (d)-[read:READ_BY]->(:User)
WITH c, dg, d, description, last_exec, last_success_exec, t, owners, tags,
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from setuptools import setup, find_packages

__version__ = '2.4.4'
__version__ = '2.4.5'


requirements_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'requirements.txt')
Expand Down

0 comments on commit d735f09

Please sign in to comment.