@graphile-contrib/pg-order-by-related
这个 Graphile Engine 插件在连接的orderBy参数中添加了额外的枚举值,允许您按相关表中的列进行排序。
需要postgraphile@^4.3.1或graphile-build-pg@^4.3.1
例子:
{
# additional enum values exposed here :backhand_index_pointing_down:
allPosts ( orderBy : PERSON_BY_AUTHOR_ID__CREATED_AT_ASC ) {
nodes {
headline
personByAuthorId {
id
name
about
}
}
}
}
支持一对一和多对一关系。 对于一对多关系, __COUN
1