如何使用 graphql 查询一系列值
How to query a range of values using graphql
我的数据模型是续集的,我正在寻找一种使用 from: 和 to: 参数指定范围来查询 graphql 的直接方法。
有语法吗?
如果使用 Sequelize 作为基础 ORM,则可以通过 Sequelize 范围运算符支持此功能。来自 http://docs.sequelizejs.com/en/latest/docs/querying/#range-operators:
{
createdAt: {
$lt: new Date(),
$gt: new Date(new Date() - 24 * 60 * 60 * 1000)
}
}
// createdAt < [timestamp] AND createdAt > [timestamp]
我的数据模型是续集的,我正在寻找一种使用 from: 和 to: 参数指定范围来查询 graphql 的直接方法。
有语法吗?
如果使用 Sequelize 作为基础 ORM,则可以通过 Sequelize 范围运算符支持此功能。来自 http://docs.sequelizejs.com/en/latest/docs/querying/#range-operators:
{
createdAt: {
$lt: new Date(),
$gt: new Date(new Date() - 24 * 60 * 60 * 1000)
}
}
// createdAt < [timestamp] AND createdAt > [timestamp]