We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This may be cleaned up by InvocationExpression. Do that formatting first.
using (var http = new HttpClient()) using (var stream = Assembly.GetExecutingAssembly().GetManifestResourceStream( "GraphQLApiGenerator.MetadataQuery.gql")) using (var queryReader = new StreamReader(stream)) using (var content = new ByteArrayContent( Encoding.UTF8.GetBytes( JsonConvert.SerializeObject( new { query = await queryReader.ReadToEndAsync() })))) {
The text was updated successfully, but these errors were encountered:
Currently looks like this, could probably be improved
using (var http = new HttpClient()) using (var stream = Assembly.GetExecutingAssembly() .GetManifestResourceStream("GraphQLApiGenerator.MetadataQuery.gql")) using (var queryReader = new StreamReader(stream)) using (var content = new ByteArrayContent( Encoding.UTF8.GetBytes( JsonConvert.SerializeObject( new { query = await queryReader.ReadToEndAsync() } ) ) )) { return; }
Sorry, something went wrong.
This should be looked at after #7
The only improvement I see will come with #451
No branches or pull requests
This may be cleaned up by InvocationExpression. Do that formatting first.
The text was updated successfully, but these errors were encountered: