Skip to content

Commit

Permalink
Update schema.graphql
Browse files Browse the repository at this point in the history
  • Loading branch information
VanshikaSabharwal authored Nov 7, 2024
1 parent 250beb0 commit e4e72c1
Showing 1 changed file with 4 additions and 14 deletions.
18 changes: 4 additions & 14 deletions schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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(
Expand Down Expand Up @@ -1092,7 +1082,7 @@ type Query {
skip: Int
where: UserWhereInput
): [UserData]!
venue(id: ID!): [Venue]
venue(id:ID!):[Venue]
}

input RecaptchaVerification {
Expand Down Expand Up @@ -1395,7 +1385,7 @@ input UserInput {
firstName: String!
lastName: String!
password: String!
selectedOrganization: ID!
selectedOrganization : ID!
}

enum UserOrderByInput {
Expand Down

0 comments on commit e4e72c1

Please sign in to comment.