Created
March 5, 2018 21:05
-
-
Save charlypoly/6d3de6298fb3b050a94612d33bd56d4d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export interface BasicUserFragment { | |
id: string, | |
first_name: string, | |
last_name: string, | |
username: string | null, | |
picture_path: string | null, | |
active: boolean, | |
portfolio_id: string | null, | |
job_title: string | null, | |
email: string, | |
}; | |
export interface PlatformUserFragment { | |
space_ids: Array< string >, | |
spaces: Array< { | |
id: string, | |
name: string, | |
logo_path: string | null, | |
} >, | |
}; | |
export interface SpaceUserFragment { | |
space_role_ids: Array< string >, | |
space_roles: Array< { | |
id: string, | |
name: string, | |
} >, | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment