如何将 SQL CONCAT 转换为 hasura 的 GRAPHQL 查询

How to convert SQL CONCAT To GRAPHQL query for hasura

我想将以下 postgres 查询转换为 graphql for hasura。我该怎么做?

Select CONCAT(cast( "vendorId" as text),split_part("customerUserName",'+', 2)) as id,"vendorId","customerUserName"  from "VendorCustomertList"

您可以创建一个 Postgres VIEW 并通过 Hasura 进行跟踪。从那里您拥有与 table 相同的所有功能:更改 GraphQL 字段名称、关系、权限等

http://localhost:9695/console/data/sql 是您可以编写自定义 SQL 并将其作为迁移进行跟踪的地方。