merge with dev
This commit is contained in:
@@ -8,6 +8,7 @@ query listTeamHubs($offset: Int, $limit: Int) @auth(level: USER) {
|
||||
teamHubs(offset: $offset, limit: $limit, orderBy: { createdAt: DESC }) {
|
||||
id
|
||||
teamId
|
||||
costCenterId
|
||||
hubName
|
||||
|
||||
address
|
||||
@@ -24,6 +25,11 @@ query listTeamHubs($offset: Int, $limit: Int) @auth(level: USER) {
|
||||
managerName
|
||||
isActive
|
||||
departments
|
||||
costCenter {
|
||||
id
|
||||
name
|
||||
businessId
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
@@ -32,6 +38,7 @@ query getTeamHubById($id: UUID!) @auth(level: USER) {
|
||||
teamHub(id: $id) {
|
||||
id
|
||||
teamId
|
||||
costCenterId
|
||||
hubName
|
||||
|
||||
address
|
||||
@@ -48,6 +55,11 @@ query getTeamHubById($id: UUID!) @auth(level: USER) {
|
||||
managerName
|
||||
isActive
|
||||
departments
|
||||
costCenter {
|
||||
id
|
||||
name
|
||||
businessId
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
@@ -65,6 +77,7 @@ query getTeamHubsByTeamId(
|
||||
) {
|
||||
id
|
||||
teamId
|
||||
costCenterId
|
||||
hubName
|
||||
|
||||
address
|
||||
@@ -81,6 +94,11 @@ query getTeamHubsByTeamId(
|
||||
managerName
|
||||
isActive
|
||||
departments
|
||||
costCenter {
|
||||
id
|
||||
name
|
||||
businessId
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
@@ -105,6 +123,7 @@ query listTeamHubsByOwnerId(
|
||||
) {
|
||||
id
|
||||
teamId
|
||||
costCenterId
|
||||
hubName
|
||||
|
||||
address
|
||||
@@ -121,6 +140,11 @@ query listTeamHubsByOwnerId(
|
||||
managerName
|
||||
isActive
|
||||
departments
|
||||
costCenter {
|
||||
id
|
||||
name
|
||||
businessId
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user