Ontology loop ( ontology - workshop action - ontology - workshop)

Hi, I deployed a dataset in pipeline builder, lets call it pipeline dataset. then I use this pipeline dataset in code repo to transform and create alerts. lets call the output dataset from code repo as alerts dataset. then I use this alerts dataset to create ontology object. then i used this ontology object in worksjop to build application. I also added an action type in the ontology and used it in the pipeline. when I submit the action, i got new instances. now, from ontology-materilization-create new dataset I created a dataset from ontology which contains updated data from ontology after submitting the action. now I need to transform this updated data again in code repo and pass it to the same ontology. how can i do that?

Hi @Enamul16022. Could you be a bit more specific what you try to achieve?
I interpret your post, that you would like to update objects through actions and (a set of) pipelines / code repos. If that is the case you can use the conflict resolution functionality within your ontology object type. BLUF you derive based on an updatedAt timestamp wether to reflect an object state through the pipeline build or the action type update.
We had a similar question here a few weeks back. Hope this helps. If not, please provide more details and maybe also a clear example :slight_smile:
https://community.palantir.com/t/updating-an-object-thru-actions-and-pipelines/3864/2

Hi @Phil-M thanks for your reply. Yes, the case is almost similar. let me describe it again. I transformed a dataset in pipeline and code repo then created an ontology object. Then used this ontology object in a workshop application. After submitting the action button in workshop, new rows are being created in the ontology object. i want to transform/analyze this updated ontology and push back it to the same ontology. when i tried to merge this in pipeline or code repo i got cyclical dependency error.

here, OO means ontology obj, TD means transformed data. I need to push or merge the updated ontology to the transformed data so that i can anaylize it again and update the ontology object.