From c70ebc3dc577b89b32e27584bb07bafdc8b99d6e Mon Sep 17 00:00:00 2001 From: trevor-anderson Date: Sun, 24 Mar 2024 11:18:22 -0400 Subject: [PATCH] feat: update gql schema doc --- fixit@current.graphql | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/fixit@current.graphql b/fixit@current.graphql index 6e6ede07..bc970024 100644 --- a/fixit@current.graphql +++ b/fixit@current.graphql @@ -119,7 +119,7 @@ interface FixitUser { email: Email! """Phone number of either a User or Contact""" - phone: String! + phone: String """Profile object of either a User or Contact""" profile: Profile! @@ -161,7 +161,7 @@ type Contact implements FixitUser { email: Email! """Contact phone number""" - phone: String! + phone: String """Contact Profile object""" profile: Profile! @@ -298,8 +298,8 @@ type User implements FixitUser { """(Immutable) User's own email address""" email: Email! - """(Immutable) User's own phone number""" - phone: String! + """User's own phone number""" + phone: String """ (Mobile-Only) User's Expo push token, used to send push notifications to the User's mobile device @@ -482,11 +482,11 @@ type AuthTokenPayload { id: ID! handle: String! email: String! - phone: String! + phone: String profile: Profile! stripeCustomerID: String! subscription: AuthTokenPayloadSubscriptionInfo - stripeConnectAccount: AuthTokenPayloadStripeConnectAccountInfo! + stripeConnectAccount: AuthTokenPayloadStripeConnectAccountInfo createdAt: DateTime! updatedAt: DateTime! }