Skip to content

Commit

Permalink
fix graphql mutation syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
darthtrevino committed Oct 23, 2021
1 parent c9c2c8e commit 7194f2d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { organizationState } from '~store'
import { useCallback } from 'react'

const DELETE_SPECIALIST = gql`
mutation removeUserFromOrganization(orgId: $orgId, $userId: String!) {
mutation removeUserFromOrganization($orgId: String!, $userId: String!) {
removeUserFromOrganization(orgId: $orgId, userId: $userId) {
message
status
Expand Down

0 comments on commit 7194f2d

Please sign in to comment.