Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
03-19-2020 02:42 AM
CALL graphql.idl('
type Movie {
"""
custom description of field
"""
title: String!
}
')
In Apollo triple quotes work,
Via "CALL graphql.idl" and POST to the 'http://localhost:7474/graphql/idl/` - no
Solved! Go to Solution.
03-19-2020 11:38 PM
custom field descriptions are not saved in the Neo4j schema.
Only in the GraphQL server schema (apollo)
03-19-2020 03:51 AM
The custom field descriptions need to look like this in your schema:
"""
Describes a User of the system
"""
type User {
id: ID!
userName: String
password: String
}
At least, that's how it's worked for me.
03-19-2020 05:34 AM
in what environment do you set the schema, and in what environment can you see the result?
03-19-2020 05:50 AM
I'm using GraphQL for my API. That is in the schema definition.
03-19-2020 11:38 PM
custom field descriptions are not saved in the Neo4j schema.
Only in the GraphQL server schema (apollo)
All the sessions of the conference are now available online