问题标签 [grandstack]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
neo4j - 在 Neo4j GraphQL 2.0 中替代 @additionalLabels
我们运行一个项目,该项目使用@additionalLabels 指令来创建多租户,就像旧版本的 GRANDstack 文档所建议的那样。
现在我们在迁移到新版本时遇到了这个指令“目前不支持”的问题,正如这里所说的https://neo4j.com/docs/graphql-manual/current/guides/migration-guide/类型定义/#_additionallabels
有人知道吗
- 一种解决方法,可以像以前版本一样优雅地完成它
- 该指令何时再次可用
谢谢你的帮助!
neo4j - 在 graphql/neo4j 中,关系 IN 和 OUT 与 cypher 的关系没有按预期工作
我在以正确的方式创建关系时遇到问题,我有这些模式:
我添加了这个突变来直接作为当前用户之一创建一顿饭,如下所示:
在 neo4j 数据库中,与用户建立了关系,一切看起来都很好,但是当我查询用户的饭菜或饭菜的 createdBy 字段时,它显示“null”,我错过了什么?
neo4j - 如何使用 Grandstack 使用带有密码的自定义查询来查询 Neo4j 的关系?
我有这些模型:
这种关系是在 neo4j 中建立的,当我查询所有用户但是当我对自定义用户使用这个自定义查询时,餐点被定义为 null 我不知道为什么
当我在 graphql 中执行此查询时
它告诉我饭菜是无效的,但它们不是...
我通过查看我的 neo4j 数据库知道这一点,也因为当我查询所有用户时
我可以看到饭菜的价值:
neo4j - 如何使用 Graphql 和 Neo4j 在类型字段上添加唯一约束?
我正在制作一个 GRANDStack 应用程序,所以我使用的是 neo4j 和 graphql,
我的 schema.graphql 文件中有这种类型:
但我仍然可以创建多个相同的帐户
当我在这里查看 neo4j 文档时,我知道这是可能的: https ://neo4j.com/docs/graphql-manual/current/directives/#_unique
但我现在唯一发现的是在我的数据库中手动执行类似的操作:
但这不是一个好主意,我希望这是自动的
我认为我的 package.json 也是最新的:
javascript - unknown directive "@isAuthenticated". Using Neo4j and Graphql
I'm trying to do something like this :
but when I do that in my graphql.schema :
I get this error :
how am I supposed to add the directives?