We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e5be32 commit 4e702b0Copy full SHA for 4e702b0
Octokit.GraphQL.IntegrationTests/Queries/ViewerTests.cs
@@ -78,5 +78,15 @@ public async Task Viewer_By_GraphyQL_Matches_Api()
78
//PublicGists
79
//TotalPrivateRepos
80
}
81
+
82
+ [IntegrationTest]
83
+ public async Task Viewer_Has_No_OrganizationVerifiedDomainEmails_For_Octokit()
84
+ {
85
+ var query = new GraphQL.Query().Viewer.Select(user => user.OrganizationVerifiedDomainEmails("octokit").ToList());
86
87
+ var emails = await Connection.Run(query);
88
89
+ Assert.Empty(emails);
90
+ }
91
-}
92
+}
0 commit comments