@@ -97,7 +97,7 @@ type CreateOrganizationPayload {
97
97
"""An edge for our `Organization`. May be used by Relay 1."""
98
98
organizationEdge (
99
99
"""The method to use when ordering `Organization`."""
100
- orderBy : [OrganizationsOrderBy ! ] = [PRIMARY_KEY_ASC ]
100
+ orderBy : [OrganizationsOrderBy ! ]! = [PRIMARY_KEY_ASC ]
101
101
): OrganizationsEdge
102
102
103
103
"""
@@ -140,7 +140,7 @@ type CreateUserEmailPayload {
140
140
"""An edge for our `UserEmail`. May be used by Relay 1."""
141
141
userEmailEdge (
142
142
"""The method to use when ordering `UserEmail`."""
143
- orderBy : [UserEmailsOrderBy ! ] = [PRIMARY_KEY_ASC ]
143
+ orderBy : [UserEmailsOrderBy ! ]! = [PRIMARY_KEY_ASC ]
144
144
): UserEmailsEdge
145
145
}
146
146
@@ -194,7 +194,6 @@ type DeleteUserAuthenticationPayload {
194
194
unchanged and unused. May be used by a client to track mutations.
195
195
"""
196
196
clientMutationId : String
197
- deletedUserAuthenticationNodeId : ID
198
197
199
198
"""
200
199
Our root query field type. Allows us to run any query from our mutation payload.
@@ -225,7 +224,6 @@ type DeleteUserEmailPayload {
225
224
unchanged and unused. May be used by a client to track mutations.
226
225
"""
227
226
clientMutationId : String
228
- deletedUserEmailNodeId : ID
229
227
230
228
"""
231
229
Our root query field type. Allows us to run any query from our mutation payload.
@@ -241,7 +239,7 @@ type DeleteUserEmailPayload {
241
239
"""An edge for our `UserEmail`. May be used by Relay 1."""
242
240
userEmailEdge (
243
241
"""The method to use when ordering `UserEmail`."""
244
- orderBy : [UserEmailsOrderBy ! ] = [PRIMARY_KEY_ASC ]
242
+ orderBy : [UserEmailsOrderBy ! ]! = [PRIMARY_KEY_ASC ]
245
243
): UserEmailsEdge
246
244
}
247
245
@@ -338,7 +336,7 @@ type MakeEmailPrimaryPayload {
338
336
"""An edge for our `UserEmail`. May be used by Relay 1."""
339
337
userEmailEdge (
340
338
"""The method to use when ordering `UserEmail`."""
341
- orderBy : [UserEmailsOrderBy ! ] = [PRIMARY_KEY_ASC ]
339
+ orderBy : [UserEmailsOrderBy ! ]! = [PRIMARY_KEY_ASC ]
342
340
): UserEmailsEdge
343
341
}
344
342
@@ -751,13 +749,19 @@ type PageInfo {
751
749
type Query {
752
750
"""The currently logged in user (or null if not logged in)."""
753
751
currentUser : User
752
+
753
+ """Get a single `Organization`."""
754
754
organization (id : UUID ! ): Organization
755
+
756
+ """Get a single `Organization`."""
755
757
organizationBySlug (slug : String ! ): Organization
756
758
757
759
"""
758
760
Given an invitation UUID (and, if required, the code that was emailed to you), retrieves the `Organization` that you were invited to.
759
761
"""
760
762
organizationForInvitation (code : String , invitationId : UUID ! ): Organization
763
+
764
+ """Get a single `OrganizationMembership`."""
761
765
organizationMembership (id : UUID ! ): OrganizationMembership
762
766
763
767
"""Reads and enables pagination through a set of `Organization`."""
@@ -788,9 +792,17 @@ type Query {
788
792
"""The method to use when ordering `Organization`."""
789
793
orderBy : [OrganizationsOrderBy ! ] = [PRIMARY_KEY_ASC ]
790
794
): OrganizationsConnection
795
+
796
+ """Get a single `User`."""
791
797
user (id : UUID ! ): User
798
+
799
+ """Get a single `UserAuthentication`."""
792
800
userAuthentication (id : UUID ! ): UserAuthentication
801
+
802
+ """Get a single `User`."""
793
803
userByUsername (username : String ! ): User
804
+
805
+ """Get a single `UserEmail`."""
794
806
userEmail (id : UUID ! ): UserEmail
795
807
}
796
808
@@ -938,7 +950,7 @@ type TransferOrganizationBillingContactPayload {
938
950
"""An edge for our `Organization`. May be used by Relay 1."""
939
951
organizationEdge (
940
952
"""The method to use when ordering `Organization`."""
941
- orderBy : [OrganizationsOrderBy ! ] = [PRIMARY_KEY_ASC ]
953
+ orderBy : [OrganizationsOrderBy ! ]! = [PRIMARY_KEY_ASC ]
942
954
): OrganizationsEdge
943
955
944
956
"""
@@ -970,7 +982,7 @@ type TransferOrganizationOwnershipPayload {
970
982
"""An edge for our `Organization`. May be used by Relay 1."""
971
983
organizationEdge (
972
984
"""The method to use when ordering `Organization`."""
973
- orderBy : [OrganizationsOrderBy ! ] = [PRIMARY_KEY_ASC ]
985
+ orderBy : [OrganizationsOrderBy ! ]! = [PRIMARY_KEY_ASC ]
974
986
): OrganizationsEdge
975
987
976
988
"""
@@ -1013,7 +1025,7 @@ type UpdateOrganizationPayload {
1013
1025
"""An edge for our `Organization`. May be used by Relay 1."""
1014
1026
organizationEdge (
1015
1027
"""The method to use when ordering `Organization`."""
1016
- orderBy : [OrganizationsOrderBy ! ] = [PRIMARY_KEY_ASC ]
1028
+ orderBy : [OrganizationsOrderBy ! ]! = [PRIMARY_KEY_ASC ]
1017
1029
): OrganizationsEdge
1018
1030
1019
1031
"""
@@ -1058,7 +1070,7 @@ type UpdateUserPayload {
1058
1070
"""An edge for our `User`. May be used by Relay 1."""
1059
1071
userEdge (
1060
1072
"""The method to use when ordering `User`."""
1061
- orderBy : [UsersOrderBy ! ] = [PRIMARY_KEY_ASC ]
1073
+ orderBy : [UsersOrderBy ! ]! = [PRIMARY_KEY_ASC ]
1062
1074
): UsersEdge
1063
1075
}
1064
1076
0 commit comments