An Azure service for ingesting, preparing, and transforming data at scale.
Ensure that the Lookup_Group_IDs_copy1 activity returns a JSON response and that the @odata.nextLink is indeed within the value array as expected. You can inspect the full output by running a debug pipeline and checking the full activity output in the logs.
If the @odata.nextLink is not inside value[0] but at a different level in the JSON, adjust the path accordingly. For example, if the @odata.nextLink is at the root of the response (outside the value array), you might need something like this:
@activity('Lookup_Group_IDs_copy1').output['@odata.nextLink']
If there's a chance that the @odata.nextLink key might be missing or null, you can use the coalesce function to provide a default value in case it is not found. For example:
@coalesce(activity('Lookup_Group_IDs_copy1').output['@odata.nextLink'], 'default_value')
Try the above steps and see if you can pinpoint the exact location of the @odata.nextLink attribute in your response. Let me know how it goes!