20 lines
174 B
GraphQL
20 lines
174 B
GraphQL
query getProjects {
|
|
organizations {
|
|
id
|
|
name
|
|
}
|
|
teams {
|
|
id
|
|
name
|
|
createdAt
|
|
}
|
|
projects {
|
|
id
|
|
name
|
|
team {
|
|
id
|
|
name
|
|
}
|
|
}
|
|
}
|