Merge pull request #2510 from Human-Connection/fix-null-pointer-error-username-build-please

Fix: User.name is not non-nullable
This commit is contained in:
mattwr18 2019-12-13 19:46:58 +01:00 committed by GitHub
commit 04ce19dd63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,7 +26,7 @@ enum _UserOrdering {
type User {
id: ID!
actorId: String
name: String!
name: String
email: String! @cypher(statement: "MATCH (this)-[: PRIMARY_EMAIL]->(e: EmailAddress) RETURN e.email")
slug: String!
avatar: String