change language to locale
This commit is contained in:
Alexander Friedland 2019-10-18 12:15:21 +02:00 committed by GitHub
parent abaa9b7759
commit a6108f6a00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,7 +29,7 @@ type User {
allowEmbedIframes: Boolean
language: String
locale: String
friends: [User]! @relation(name: "FRIENDS", direction: "BOTH")
friendsCount: Int! @cypher(statement: "MATCH (this)<-[: FRIENDS]->(r: User) RETURN COUNT(DISTINCT r)")
@ -171,7 +171,7 @@ type Mutation {
termsAndConditionsAgreedVersion: String
termsAndConditionsAgreedAt: String
allowEmbedIframes: Boolean
language: String
locale: String
): User
DeleteUser(id: ID!, resource: [Deletable]): User