stephen_lloyd
05/08/2021, 1:19 PMprepare_request_payload()
to that I can pass it params. So far, I overrode get_url_params in my stream, but they were appended to the end of the query instead of being added as variables.aaronsteers
05/08/2021, 11:23 PMget_url_params()
without overloading prepare_request_payload()
. As uncovered in the above issue from Julian, you may also need to ensure your GraphQLStream.query
text includes the fully wrapped syntax: query ($<paramName>: <type>, …) { <query_text> }
. This should be pretty clear if you reference the query example and get_url_params()
from Juian’s working NewRelic tap.
Hope this helps!stephen_lloyd
05/12/2021, 3:29 AM