UNPKG

portal-www

Version:

Nova Portal Website. Based on Next starter by Ueno

14 lines (11 loc) 273 B
import gql from 'graphql-tag'; import { errorFragment } from '../fragments/error'; export const RELOCATION = gql` mutation relocation($input: RelocationInput) { relocation(input: $input) { error { ...ErrorFragment } } }${errorFragment} `;