- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如下截图可以看出,当前项目数据库(postgresql)named default 具有这 4 个架构 - public、appcompany1、appcompany2 和 appcompany3。
他们共享一些公用表。现在,当我想为客户获取数据时,我会编写如下查询:
query getCustomerList {
customer {
customer_id
...
...
}
}
然后它从公共(public)架构中获取所需的数据。
但根据要求,根据前端的用户交互,该查询将针对 appcompanyN(N=1,2,3,...,任意正整数)执行。我如何实现这个目标?
注意:每当用户创建新公司时,都会为该公司创建一个新模式。所以模式总数不限于4。
最佳答案
我怀疑您看到的问题实际上并不存在。
一切都比看起来简单得多。
有很多模式内部具有相同(或几乎相同)的对象。
所有表都在 hasura 中注册。
Hasura 无法注册具有相同名称的不同表,因此默认名称为 [schema_name]_[table_name](public
除外)
所以表 customer
将被注册为:
客户
(来自public
)appcompany1_customer
appcompany2_customer
appcompany3_customer
可以使用“自定义 GraphQL 根字段”在 GraphQL 架构中自定义实体名称。
But according to the requirements, depending on user interactions in front-end, that query will be executed for appcompanyN (N=1,2,3,..., any positive integer). How do I achieve this goal?
存在相同的对象,只是前缀与模式名称不同。
所以解决方案很简单
应用程序存储 GraphQL 查询模板,并在请求前用真实模式名称替换前缀。
例如
query getCustomerList{
[schema]_customer{
}
}
将 [schema]
替换为 appcompany1
、appcompany2
、appcompanyZ
并执行。
如果表 100% 相同,则可以创建一个 sql View :
CREATE VIEW ALL_CUSTOMERS
AS
SELECT 'public' as schema,* FROM public.customer
UNION ALL
SELECT 'appcompany1' as schema,* FROM appcompany1.customer
UNION ALL
SELECT 'appcompany2' as schema,* FROM appcompany2.customer
UNION ALL
....
SELECT `appcompanyZ',* FROM appcompanyZ.customer
这样:不需要动态查询,不需要注册所有schema中的所有对象。
你只需要用组合数据注册 View 并使用一个查询
query{
query getCustomerList($schema: string) {
all_customer(where: {schema: {_eq: $schema}}){
customer_id
}
}
关于这两种解决方案:很难称它们为优雅。
我自己都不喜欢他们两个;)
因此请自行决定哪个更适合您的情况。
关于postgresql - 如何在 hasura 中针对特定模式执行 graphql 查询?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69854137/
我是一名优秀的程序员,十分优秀!