Hi there, For the lowcode CDK: I managed to be ab...
# help-connector-development
l
Hi there, For the lowcode CDK: I managed to be able to query a GraphQL endpoint, however I need to use GraphQL variables for pagination purposes. Is there a way to define and pass nested json? {"variables": {"limit": 123, "offset": 456}} I tried to do this in
Copy code
page_token_option:
  field_name: "variables.offset"
  inject_into: "body_json"
page_size_option:
  field_name: "variables.limit"
  inject_into: "body_json"
But it doesn't nest in the debug of the outbound API request ("variables.limit": 123)
Edit: found this as the relevant feature request I believe https://github.com/airbytehq/airbyte/issues/18784 Does anyone have an example of a source connector written in python (not lowcode) that makes uses graphql with variables for pagination that I can reference to see if I can roll my own?
c
Hi @Lenny C! Did you manage to make any progress with the GraphQL connector? I'm trying now to create a GraphQL destination
l
@C P 5 months later, sorry, i just logged back in to see if there were any developments to this, did you figure out? I had to use a middleware application i made in nginx to receive a get request, and convert it into the post
Looks like someone may have figured it out? https://airbytehq.slack.com/archives/C027KKE4BCZ/p1708113278128069