Skip to content

Commit c5cc3bb

Browse files
committed
Fix account update
1 parent a9b760c commit c5cc3bb

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

web/src/graphql/mutations/updateAccountMutation.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
11
import { UpdateAccountMutation, UpdateAccountMutationVariables } from "../../graphql-types"
22
import { gql } from "../../utils/gql"
33
import { MutationOptions, useMutation } from "../../utils/graphqlClient/useMutation"
4-
import { FullAccountFragment } from "../fragments/accountFragments"
54
import { ACCOUNTS_QUERY } from "../queries/accountsQuery"
65
import { GET_ACCOUNT_QUERY } from "../queries/getAccountQuery"
76

87
const UPDATE_ACCOUNT_MUTATION = gql`
9-
${FullAccountFragment}
10-
118
mutation UpdateAccount($id: ID!, $input: AccountInput!) {
129
accountUpdate(input: { id: $id, accountInput: $input }) {
1310
account {

0 commit comments

Comments
 (0)