Skip to content

Commit eae444d

Browse files
moved to select workspace id
1 parent 8a595c0 commit eae444d

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

README.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,11 @@ By default, the production pipeline schema will be considered to retrive data fr
8686
To select a particular development pipeline schema you can use following function call:
8787

8888
```
89-
db_schema = pipeline_id
90-
cli.select_db_schema(schema_name=db_schema)
89+
workspace_id = pipeline_id
90+
cli.select_workspace_id(workspace_id=workspace_id)
9191
```
92+
**Note - select_db_schema() is depricated. Use select_workspace_id(workspace_id=workspace_id) instead.**
93+
9294

9395
### Retrieving Data
9496

examples/Query Examples.ipynb

+2-2
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,8 @@
136136
"metadata": {},
137137
"outputs": [],
138138
"source": [
139-
"db_schema = 'pipeline_id' \n",
140-
"cli.select_db_schema(schema_name=db_schema)"
139+
"workspace_id = 'pipeline_id'\n",
140+
"cli.select_workspace_id(workspace_id=workspace_id)"
141141
]
142142
},
143143
{

0 commit comments

Comments
 (0)