# HG changeset patch # User Fabien Amarger <fabien.amarger@logilab.fr> # Date 1708958660 -3600 # Mon Feb 26 15:44:20 2024 +0100 # Node ID 58c0e4dcbe5d30a7fbe5f8ecaa3c45774c120bc3 # Parent 2b379c9ba75cad62b2723a59d2db3a11999d971c feat(schema): Add graph_uri to ImportRecipe this will be used to export the data into a dedicated named graph in the endpoint diff --git a/cubicweb_rodolf/schema.py b/cubicweb_rodolf/schema.py --- a/cubicweb_rodolf/schema.py +++ b/cubicweb_rodolf/schema.py @@ -51,6 +51,7 @@ class ImportRecipe(EntityType): name = String(required=True) dataservice = SubjectRelation("DataService", cardinality="1*") + graph_uri = String() process_type = String( required=True, vocabulary=["default", "default-dryrun"],