You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here is a quick suggestion of how querying can work:
Essential features we need
Raw querying
Deserialization of the data to Point
Deserialization of Point to struct
Streaming
Nice to have features
Query-parameterization
FluxQueryBuilder
Example code
let client = Client::new(...);let query_result = client.query("...").await.unwrap();// Result to Pointsfor point in query_result.iter_point(){println!("{:?}", point);}// Result to Structfor s in query_result.iter::<MyStruct>(){println!("{:?}", s);}
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Implementing querying
Here is a quick suggestion of how querying can work:
Essential features we need
Nice to have features
Example code
Beta Was this translation helpful? Give feedback.
All reactions