如何在 JavaScript 中动态设置 Neo4j Graphql 的 SortDirection?

发布于 2025-01-10 12:40:15 字数 462 浏览 0 评论 0原文

我正在使用 neo4j 的 graphql 库,它使用枚举作为 SortDirections,如下所示:

enum SortDirection {
    ASC
    DESC
}

我希望能够从我的 React Native 应用程序中动态设置它,但我不确定如何处理它,因为我可以'不只是参考DESC - 我想出的最接近的方法是将其设为字符串,这不起作用“DESC”

let options = { sort: { originalValue: sortDirection }, limit: 10 }

由于它是枚举而不是字符串,因此 "DESC" 不起作用。但我不能只写 DESC 因为它不是我的 javascript 应用程序中定义的变量,知道该怎么做吗?先感谢您。

I'm using neo4j's graphql library and it uses enums for SortDirections, like this:

enum SortDirection {
    ASC
    DESC
}

And I would like to be able to dynamically set this from my React Native application, but I'm not sure how I would go about it because I can't just reference DESC - the closest I have come up with is making it a string, which doesn't work "DESC".

let options = { sort: { originalValue: sortDirection }, limit: 10 }

Since it's an enum and not a string, "DESC" doesn't work. But I'm not able to just write DESC because it's not a defined variable in my javascript application, any idea what to do? Thank you in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

傲世九天 2025-01-17 12:40:15

抱歉,这是一个愚蠢的错误。字符串 "DESC" 似乎确实有效!

Sorry, this was a silly mistake. The String "DESC" does seem to work!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文