28 lines
330 B
GraphQL
28 lines
330 B
GraphQL
query GetMe {
|
|
me {
|
|
id
|
|
firstName
|
|
lastName
|
|
activeTeamId
|
|
activeTeam {
|
|
id
|
|
name
|
|
logtoOrgId
|
|
teamType
|
|
selectedLocation {
|
|
type
|
|
uuid
|
|
name
|
|
latitude
|
|
longitude
|
|
}
|
|
}
|
|
teams {
|
|
id
|
|
name
|
|
logtoOrgId
|
|
teamType
|
|
}
|
|
}
|
|
}
|