UNPKG

portal-www

Version:

Nova Portal Website. Based on Next starter by Ueno

20 lines (17 loc) 424 B
import gql from 'graphql-tag'; import { userFragment } from '../fragments/user'; import { errorFragment } from '../fragments/error'; export const UPDATE_ACCOUNT = gql` mutation updateAccount($input: UpdateAccountInput!, $ssn: ID) { updateAccount(input: $input, ssn: $ssn) { user { ...UserFragment } error { ...ErrorFragment } } } ${errorFragment} ${userFragment} `;