diff --git a/dnet-ariadneplus-graphdb-publisher/src/main/resources/eu/dnetlib/ariadneplus/sparql/enrich/MIBAC/ordered_sparql_insert_mibac_test.sparql b/dnet-ariadneplus-graphdb-publisher/src/main/resources/eu/dnetlib/ariadneplus/sparql/enrich/MIBAC/ordered_sparql_insert_mibac_test.sparql
new file mode 100644
index 0000000..894b625
--- /dev/null
+++ b/dnet-ariadneplus-graphdb-publisher/src/main/resources/eu/dnetlib/ariadneplus/sparql/enrich/MIBAC/ordered_sparql_insert_mibac_test.sparql
@@ -0,0 +1,68 @@
+PREFIX aocat:
+PREFIX skos:
+
+INSERT {
+ GRAPH {
+ ?record aocat:has_derived_subject ?derived_subject .
+ }
+}
+USING
+WHERE {
+ {
+ ?record aocat:has_derived_subject ?derived_subject .
+ }
+};
+
+PREFIX aocat:
+PREFIX skos:
+
+INSERT {
+ GRAPH {
+ ?derived_subject skos:prefLabel ?dslabel .
+ }
+}
+USING
+WHERE {
+ {
+ ?record aocat:has_derived_subject ?derived_subject .
+ ?derived_subject skos:prefLabel ?dslabel .
+ }
+};
+
+PREFIX skos:
+ PREFIX aocat:
+ PREFIX time:
+ PREFIX rdfs:
+ INSERT {
+ GRAPH {
+ ?temporal aocat:has_period ?native_period .
+ ?temporal aocat:from ?from .
+ ?temporal aocat:until ?until .
+ }
+ }
+ WHERE {
+ GRAPH {
+ ?temporal aocat:has_native_period ?native_period .
+ ?native_period rdfs:label|skos:prefLabel ?native_label .
+ ?temporal aocat:from ?from .
+ ?temporal aocat:until ?until .
+ }
+ };
+
+ PREFIX skos:
+ PREFIX aocat:
+ PREFIX time:
+ PREFIX rdfs:
+ INSERT {
+ GRAPH {
+ ?native_period skos:prefLabel ?native_label .
+ }
+ }
+ WHERE {
+ GRAPH {
+ ?temporal aocat:has_native_period ?native_period .
+ ?native_period rdfs:label|skos:prefLabel ?native_label .
+ ?temporal aocat:from ?from .
+ ?temporal aocat:until ?until .
+ }
+ };
\ No newline at end of file