mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-06 08:35:55 +00:00
remove frame options from getting started
This commit is contained in:
parent
43e4f98fe4
commit
ab19576dbb
1 changed files with 2 additions and 11 deletions
|
|
@ -59,21 +59,12 @@ curl localhost:10101/index/repository -X POST
|
|||
|
||||
Let's create the `stargazer` frame which has user IDs of stargazers as its rows:
|
||||
```
|
||||
curl localhost:10101/index/repository/frame/stargazer \
|
||||
-X POST \
|
||||
-d '{"options": {"timeQuantum": "YMD",
|
||||
"inverseEnabled": true}}'
|
||||
curl localhost:10101/index/repository/frame/stargazer -X POST
|
||||
```
|
||||
|
||||
Since our data contains time stamps for the time users starred repos, we set the *time quantum* for the `stargazer` frame in the options as well. Time quantum is the resolution of the time we want to use, and we set it to `YMD` (year, month, day) for `stargazer`.
|
||||
|
||||
We set `inverseEnabled` to `true` in order to allow queries over columns as well as rows.
|
||||
|
||||
Next up is the `language` frame, which will contain IDs for programming languages:
|
||||
```
|
||||
curl localhost:10101/index/repository/frame/language \
|
||||
-X POST \
|
||||
-d '{"options": {"inverseEnabled": true}}'
|
||||
curl localhost:10101/index/repository/frame/language -X POST
|
||||
```
|
||||
|
||||
#### Import Data From CSV Files
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue