We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If no source params are passed an error is returned
DatasetMigration.create( source_id=dataset$id, target_id=dataset$id, target_fields=fields ) Error parsing API response Error in value[[3L]](cond) : {"non_field_errors": ["No input provided"]}
WIth source_params
DatasetMigration.create( source_id=dataset$id, target_id=dataset$id, source_params=list(limit=1), target_fields=fields ) # success
The NULL value must be sent incorrectly.
Oddly enough, if I pass source_params and no target_fields, we do not have this problem. So maybe the API serializer?
The text was updated successfully, but these errors were encountered:
passing some dummy params will work
DatasetMigration.create( source_id=dataset$id, target_id=dataset$id, source_params=list(fake_kwarg=1), target_fields=fields )
Sorry, something went wrong.
No branches or pull requests
If no source params are passed an error is returned
WIth source_params
The NULL value must be sent incorrectly.
Oddly enough, if I pass source_params and no target_fields, we do not have this problem. So maybe the API serializer?
The text was updated successfully, but these errors were encountered: