15 lines
151 B
GraphQL
15 lines
151 B
GraphQL
query GetMeProfile {
|
|
me {
|
|
id
|
|
firstName
|
|
lastName
|
|
phone
|
|
avatarId
|
|
activeTeamId
|
|
activeTeam {
|
|
id
|
|
name
|
|
}
|
|
}
|
|
}
|