Skip to content

Instantly share code, notes, and snippets.

@bicknest
Last active May 22, 2020 23:16
Show Gist options
  • Save bicknest/27585b25a77a71812af02936a6fae803 to your computer and use it in GitHub Desktop.
Save bicknest/27585b25a77a71812af02936a6fae803 to your computer and use it in GitHub Desktop.
ProfileData fragment
// @generated
// This file was automatically generated and should not be edited.
// ====================================================
// GraphQL fragment: ProfileData
// ====================================================
export interface ProfileData_business {
__typename: "Business";
/**
* The ID of the object.
*/
id: string;
}
export interface ProfileData {
__typename: "Profile";
name: string;
age: number | null;
phoneNumber: string;
business: ProfileData_business | null;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment