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
Is your feature request related to a problem? Please describe.
I am unable to find a way to parameterize queries that are passed into the remote projection function. It seems like the suggested endpoint for remote projection requires that the query passed in is explicitly in the string format. I would also like the progress logging provided to be optional. It really messes with our json logger in production.
Describe the solution you would like
I would like parameters to be exposed in the GraphProjectRemoteRunner call procedure. I believe something like:
It seems like the remote projection api may just be behind other api's for projection in the client library, those api's currently have this feature.
Describe alternatives you have considered
Suppose I have a list or a dictionary I would like to pass as parameters to the query. Right now I have to format a string to incorperate these values into the string with an awful str(dict).replace(""", "") (Wouldn't even work for Dict[str, str] ), and str(list).replace("", '').
Additional context
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
I am unable to find a way to parameterize queries that are passed into the remote projection function. It seems like the suggested endpoint for remote projection requires that the query passed in is explicitly in the string format. I would also like the progress logging provided to be optional. It really messes with our json logger in production.
Describe the solution you would like
I would like parameters to be exposed in the GraphProjectRemoteRunner call procedure. I believe something like:
Alternatively:
It seems like the remote projection api may just be behind other api's for projection in the client library, those api's currently have this feature.
Describe alternatives you have considered
Suppose I have a list or a dictionary I would like to pass as parameters to the query. Right now I have to format a string to incorperate these values into the string with an awful str(dict).replace(""", "") (Wouldn't even work for Dict[str, str] ), and str(list).replace("", '').
Additional context
The text was updated successfully, but these errors were encountered: