Skip to content
New issue

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

Add an option to gzip compress gql http requests #10

Merged
merged 3 commits into from
Jan 13, 2023

Conversation

omidaladini
Copy link
Member

No description provided.

request.httpBody = encoded
request.httpBody = try? encoder.encode(payload)

if compressRequest {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I know this should never fail, but if you do:

if compressRequest, let gzipped = try? encoder.encode(payload) {
  request.httpBody = gzipped
  request.setValue("gzip", forHTTPHeaderField: "Content-Encoding")
}

Then the header would only be set if the gzip is successful. Otherwise it would be a normal non-gzipped request

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great, added, tnx.

@omidaladini omidaladini merged commit 52f4feb into main Jan 13, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants