You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/server/graphql/public/typeDefs/Organization.graphql
+4-12
Original file line number
Diff line number
Diff line change
@@ -48,25 +48,17 @@ type Organization {
48
48
activeTeamCount: Int!
49
49
50
50
"""
51
-
All the teams in the organization. If the viewer is not a billing lead, org admin, super user, or they do not have the publicTeams flag, return the teams they are a member of.
51
+
Teams in the organization that the viewer has access to.
52
+
For org admins/super users: all teams in the org (viewer's teams first).
53
+
For regular users: teams the viewer is on plus public teams.
52
54
"""
53
-
allTeams: [Team!]!
55
+
teams: [Team!]!
54
56
55
57
"""
56
58
The count of all teams in the organization
57
59
"""
58
60
allTeamsCount: Int!
59
61
60
-
"""
61
-
all the teams the viewer is on in the organization
62
-
"""
63
-
viewerTeams: [Team!]!
64
-
65
-
"""
66
-
all the teams that the viewer does not belong to that are in the organization. Only visible if the org has the publicTeams flag set to true.
0 commit comments