From 16811bc04ce5d251adfc59e8a649f5d036445bdd Mon Sep 17 00:00:00 2001 From: Travis Turner Date: Thu, 4 Oct 2018 10:43:09 -0500 Subject: [PATCH] add a "store intersect" example to the Store() docs --- docs/query-language.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/query-language.md b/docs/query-language.md index 5030db3cc..9bc231e6f 100644 --- a/docs/query-language.md +++ b/docs/query-language.md @@ -292,6 +292,14 @@ Store(Row(stargazer=1), stargazer=2) {"results":[true]} ``` +Store the results of the intersection of stargazer rows 10 and 11 into stargazer row 20. +```request +Store(Intersect(Row(stargazer=10), Row(stargazer=11)), stargazer=20) +``` +```response +{"results":[true]} +``` + ### Read Operations #### Row