Send more compact query
See original GitHub issueIt seems that Snowflaqe currently sends the exact GraphQL queries and mutations as the ones defined in the GraphQL files. So given this query:
query Countries {
name
}
This code will be generated in the GraphqlClient module:
member _.Countries() =
async {
let query = """
query Countries {
name
}
"""
// ...
Which has 2 drawbacks:
- The sent payload will be heavier (since it includes line returns and spaces)
- Some servers’ libraries (like Elixir’s Absinthe) don’t support queries containing line returns (natively)
Is there an option to generate “compact” queries and mutations?
Issue Analytics
- State:
- Created 3 years ago
- Comments:9 (6 by maintainers)
Top Results From Across the Web
sql - Is it possible to make this view's query more compact?
You can use table value constructor (usually used in INSERT) and then CROSS JOIN on it. SELECT ma.ManningID , ... , p.Pline ,...
Read more >How to write this query in SQL Server Compact in more ...
There is no multi value CASE statement in T-SQL. However, you could do a join to a constant value row source like this:...
Read more >SQL Compact Query Analyzer
A fast and lightweight tool for querying and manipulating SQLCE databases. This tool supports SQLCE versions 3.0, 3.1, 3.5 and 4.0 - GitHub ......
Read more >Analyze And View SDF Database Files With SQL Compact ...
It's a portable SQL query executor, analyzer, and table data viewer for SQL Compact databases. All it takes to analyze the database is...
Read more >Chapter 4. Query Performance Optimization
Some queries ask for more data than they need and then throw some of it ... The client sends a query to the...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

Awesome, thanks for the confirmation! If you come across any more issues, please let me know 🙏
That was a very fast fix!! Thank you very much @Zaid-Ajaj it works like a charm now 🎊
Sure, I wasn’t aware of this, I will do that next time 😄