Hi,
I'm trying to query relationship properties via GraphQL.
As was mentioned here: Neo4j GraphQL Library - Neo4j GraphQL Library ,
I built a relationship type to include in my query.
The underlying graph is quite simple: There are skill profiles (of users) that are defined by their relationships to single (atomic) skills. This relationship has a 'value' (or 'key figure') that describes how proficient someone is in a that skill.
The relevant parts of the schema look like this:
However, when I ask for the relationship in GraphQL, I get an error:
"code": "GRAPHQL_VALIDATION_FAILED",
"exception": {
"stacktrace": [
"GraphQLError: Cannot query field \"from\" on type \"_SkillprofileSkillfeature\".",
I'd expect that I can simply query the 'from' and 'to' fields of the relationship type, just like that 'value'. Which, BTW, is returned properly.