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
Are there any guidelines or suggestions around the best way to construct LTR queries using the Go Typed-API client? The client doesn't have support for keywords and structs like sltr. The only option I could think of was:
Construct most of the query, without LTR, using the typed-api client
Marshal the Request into a json-string
Unmarshal the json-string into a generic map[string]interface{}
Insert the LTR portion of the query into the above generic map
Are there any guidelines or suggestions around the best way to construct LTR queries using the Go Typed-API client? The client doesn't have support for keywords and structs like
sltr
. The only option I could think of was:map[string]interface{}
raw json
functionality to run the updated queryIs there a better way of accomplishing the above?
The text was updated successfully, but these errors were encountered: