I am using the tap-rest-api-msdk and successfully ...
# getting-started
w
I am using the tap-rest-api-msdk and successfully get the first result back. The API returns next_offset only, not total count. Curious if someone could share the proper configuration for the meltano.yml that would work? -1 is shown when no more records exists.
e
Hi @will_dent! It's probably an unsupported edge case, cause the response is expected contain to an object like:
Copy code
"<some key>": {
    "total": 136,
    "limit": 2,
    "offset": 2
}
it's worth opening an issue regardless: https://github.com/widen/tap-rest-api-msdk/issues
w
Thanks Edgar.