add a "store intersect" example to the Store() docs

This commit is contained in:
Travis Turner 2018-10-04 10:43:09 -05:00
parent a6190f5cfa
commit 16811bc04c
No known key found for this signature in database
GPG key ID: 7F08008DFD9314C9

View file

@ -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