UNPKG

portal-www

Version:

Nova Portal Website. Based on Next starter by Ueno

17 lines (15 loc) 414 B
import gql from 'graphql-tag'; import { profileFragment } from 'graphql/fragments/profile'; export const SUBSCRIPTION_PLAN = gql` query subscriptionPlanQuery($subscriptionId: ID, $accountInput: AccountInput) { me(input: $accountInput) { ssn subscriptions(subscriptionId: $subscriptionId) { subscriptions { ...ProfileFragment } } } } ${profileFragment} `;