Vlad Stefan Munteanu
Vlad Stefan Munteanu
According to [JSON:API](https://jsonapi.org/format/#document-resource-object-identification), the `id` field should always be a string, but this isn't the case when fetching relationships through `SqlalchemyDataLayer`. I suspect the problem originates here: https://github.com/miLibris/flask-rest-jsonapi/blob/b4cb5576b75ffaf6463abb8952edc8839b03463f/flask_rest_jsonapi/data_layers/alchemy.py#L256 @akira-dev I...
Replaced usage of `default` with `dump_default`. Replaced usage of `missing` with `load_default`. Replaced usage of `dump_to` and `load_to` with `data_key`. IMO, this is necessary if the library wishes to stay...
HTTPError is automatically raised in [client.py](https://github.com/vladmunteanu/th2c/blob/dc47c456509fdb6f6b9fc2b121c46412c536b6d0/th2c/client.py#L180) We should accept a parameter in `fetch` and return the response object if necessary.
Follow redirects if configured so, by identifying the next host and spawning a new client to handle the new request. The new client should not auto_reconnect ( see #5 ).