Skip to content

Commit

Permalink
feat: update gql schema doc
Browse files Browse the repository at this point in the history
  • Loading branch information
trevor-anderson committed Mar 24, 2024
1 parent 1a45bc3 commit c70ebc3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions fixit@current.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -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!
Expand Down Expand Up @@ -161,7 +161,7 @@ type Contact implements FixitUser {
email: Email!

"""Contact phone number"""
phone: String!
phone: String

"""Contact Profile object"""
profile: Profile!
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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!
}
Expand Down

0 comments on commit c70ebc3

Please sign in to comment.