alteryx / alteryx/promote-r-client
Support for nested JSON objects
Ouverte
- Langage dominant
- R
- Étoiles
- 5
- Forks
- 4
- Métriques de merge des PR
- Aucune PR mergée en 30 j
Description
The Alteryx promote-python library supports nested JSON objects:
```
{
"name": {
"first_name": "colin",
"last_name": "kaepernick"
}
}
```
This doesn't work in the R client though. The jsonlite package supports nested JSON, but for some reason it is being flattened for the promote request:
```
{
"name.first_name": "colin",
"name.last_name": "kaepernick"
}
```
Is there any reason for flattening the JSON here (and not in python) ?
Guide de contribution
Aucun guide de contribution indexé pour ce dépôt
Évaluation
Cette issue n'a pas encore été évaluée.