We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ee62d6 commit bfcbaa1Copy full SHA for bfcbaa1
1 file changed
README.md
@@ -44,6 +44,18 @@
44
3. **开发 resolver**
45
在 `graph/schema.resolvers.go` 中实现您新 API 的逻辑。该文件包含负责获取和返回数据的 resolver。
46
47
+4. **数据权限 (非必须)**
48
+ graphql server 的数据需要支持 cookies 鉴权, 传入的 cookies 为:
49
+
50
+ ```json
51
+ cookies = {
52
+ "TSTenant": "ffeb581c-6f23-43d2-b507-e224e04bc82d",
53
+ "EIToken": "xxxx"
54
+ }
55
+ ```
56
57
+ 目前只支持 cookies 鉴权 [graphql-db-api engine for superset](https://github.com/lujin3/graphql-db-api/blob/main/graphqldb/db_engine_specs.py) `get_extra_params`
58
59
## 快速开始
60
61
### Start the graphql server
0 commit comments