add allowShouts type

This commit is contained in:
Joseph Ngugi 2019-10-31 21:22:10 +03:00
parent c8ce53d598
commit 9668351279

View File

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