diff --git a/schema.graphql b/schema.graphql index 3ede71c258..c993e51d8d 100644 --- a/schema.graphql +++ b/schema.graphql @@ -694,12 +694,7 @@ type Mutation { revokeRefreshTokenForUser: Boolean! saveFcmToken(token: String): Boolean! sendMembershipRequest(organizationId: ID!): MembershipRequest! - sendMessageToChat( - chatId: ID! - messageContent: String! - type: String! - replyTo: ID - ): ChatMessage! + sendMessageToChat(chatId: ID!, messageContent: String!, type: String!, replyTo: ID): ChatMessage! signUp(data: UserInput!, file: String): AuthData! togglePostPin(id: ID!, title: String): Post! unassignUserTag(input: ToggleUserTagAssignInput!): User @@ -1030,12 +1025,7 @@ type Query { skip: Int where: EventWhereInput ): [Event!]! - advertisementsConnection( - after: String - before: String - first: PositiveInt - last: PositiveInt - ): AdvertisementsConnection + advertisementsConnection(after: String, before: String, first: PositiveInt, last: PositiveInt): AdvertisementsConnection getDonationById(id: ID!): Donation! getDonationByOrgId(orgId: ID!): [Donation] getDonationByOrgIdConnection( @@ -1092,7 +1082,7 @@ type Query { skip: Int where: UserWhereInput ): [UserData]! - venue(id: ID!): [Venue] + venue(id:ID!):[Venue] } input RecaptchaVerification { @@ -1395,7 +1385,7 @@ input UserInput { firstName: String! lastName: String! password: String! - selectedOrganization: ID! + selectedOrganization : ID! } enum UserOrderByInput {