Nested meta now working
diff --git a/src/test/resources/queries/metaquery2.jsonld b/src/test/resources/queries/metaquery2.jsonld
new file mode 100644
index 0000000..e1d4690
--- /dev/null
+++ b/src/test/resources/queries/metaquery2.jsonld
@@ -0,0 +1,80 @@
+{
+  "@context": "http://ids-mannheim.de/ns/KorAP/json-ld/v0.1/context.jsonld",
+  "meta":{
+    "startPage" : 2,
+    "count" : 5,
+    "context" : {
+      "left" : [ "token", 6 ],
+      "right" : [ "token", 6 ]
+    }
+  },
+  "query":{
+    "@type":"korap:group",
+    "operation":"operation:or",
+    "operands":[
+      {
+        "@type":"korap:token",
+        "wrap":{
+          "@type":"korap:term",
+          "foundry":"mate",
+	  "layer" : "lemma",
+	  "key" : "Vokal",
+          "match":"match:eq"
+        }
+      },
+      {
+        "@type":"korap:group",
+	"operation" : "operation:sequence",
+        "operands":[
+          {
+            "@type":"korap:token",
+            "wrap":{
+              "@type":"korap:term",
+              "foundry":"mate",
+	      "layer" : "lemma",
+	      "key" : "der",
+              "match":"match:eq"
+            }
+          },
+          {
+            "@type":"korap:token",
+            "wrap":{
+              "@type":"korap:term",
+              "foundry":"mate",
+	      "layer" : "p",
+	      "key" : "ADJD",
+              "match":"match:eq"
+            }
+          }
+        ]
+      }
+    ]
+  },
+  "collections": [
+    {
+      "@type": "korap:meta-filter",
+      "@value": {
+        "@type": "korap:group",
+        "relation": "and",
+        "operands": [
+          {
+            "@type": "korap:term",
+            "@field": "korap:field#author",
+            "@value": "Hesse"
+          },
+          {
+            "@type": "korap:group",
+            "@field": "korap:field#pubDate",
+            "relation": "until",
+            "operands": [
+              {
+                "@type": "korap:date",
+                "@value": "2013-12-05"
+              }
+            ]
+          }
+        ]
+      }
+    }
+  ]
+}