Skip to content

Commit

Permalink
types change
Browse files Browse the repository at this point in the history
  • Loading branch information
meetulr committed Oct 27, 2024
1 parent 51a2d89 commit cef93bf
Show file tree
Hide file tree
Showing 2 changed files with 887 additions and 0 deletions.
7 changes: 7 additions & 0 deletions schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -1068,6 +1068,7 @@ type Mutation {
addUserCustomData(dataName: String!, dataValue: Any!, organizationId: ID!): UserCustomData!
addUserImage(file: String!): User!
addUserToUserFamily(familyId: ID!, userId: ID!): UserFamily!
assignToUserTags(input: TagActionsInput!): UserTag
assignUserTag(input: ToggleUserTagAssignInput!): User
blockPluginCreationBySuperadmin(blockUser: Boolean!, userId: ID!): AppUserProfile!
blockUser(organizationId: ID!, userId: ID!): User!
Expand Down Expand Up @@ -1129,6 +1130,7 @@ type Mutation {
removeEventAttendee(data: EventAttendeeInput!): User!
removeEventVolunteer(id: ID!): EventVolunteer!
removeEventVolunteerGroup(id: ID!): EventVolunteerGroup!
removeFromUserTags(input: TagActionsInput!): UserTag
removeFundraisingCampaignPledge(id: ID!): FundraisingCampaignPledge!
removeMember(data: UserAndOrganizationInput!): Organization!
removeOrganization(id: ID!): UserData!
Expand Down Expand Up @@ -1609,6 +1611,11 @@ type Subscription {
onPluginUpdate: Plugin
}

input TagActionsInput {
currentTagId: ID!
selectedTagIds: [ID!]!
}

scalar Time

input ToggleUserTagAssignInput {
Expand Down
Loading

0 comments on commit cef93bf

Please sign in to comment.