Add back missing locale to type User

This commit is contained in:
mattwr18 2019-10-18 15:20:06 +02:00
parent ddf8b657be
commit 7f2adfaa9e

View File

@ -28,7 +28,7 @@ type User {
termsAndConditionsAgreedAt: String
allowEmbedIframes: Boolean
locale: String
friends: [User]! @relation(name: "FRIENDS", direction: "BOTH")
friendsCount: Int! @cypher(statement: "MATCH (this)<-[: FRIENDS]->(r: User) RETURN COUNT(DISTINCT r)")