You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@airavata.apache.org by "machristie (via GitHub)" <gi...@apache.org> on 2023/05/03 16:29:49 UTC

[GitHub] [airavata-data-catalog] machristie opened a new issue, #36: Support querying by parent or child of a data product

machristie opened a new issue, #36:
URL: https://github.com/apache/airavata-data-catalog/issues/36

   The use case is that you want to get all of the children of parents that have certain metadata values. Or you want to get all of the parents of children that have certain metadata values.
   
   For example, getting children when filtering by parents:
   
   ```sql
   select child.*
   from my_schema child
   inner join my_other_schema parent
   parent.data_product_id = child.parent_data_product_id
   where parent.field1 = 'abc'
   -- etc.
   ```
   
   See also #26 which deals with general JOIN support. Note that for this issue, supporting a JOIN is not strictly necessary. Some investigation is needed to find the best way to satisfy the requirement.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@airavata.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org