json-api-dart icon indicating copy to clipboard operation
json-api-dart copied to clipboard

JSON:API client and server for Dart/Flutter

Results 10 json-api-dart issues
Sort by recently updated
recently updated
newest added

This PR adds support for nested filter parameters. Sample usecases: - Retrieving shared posts based on original post's author id: `filter[parent][author][id]=23461` - Ranges: `filter[price][min]=10&filter[price][max]=20`

Greetings! First of all, thanks for caring the community and making your library open source! My question is, is there a way to use decoding/encoding functionality without using http request...

Hello. Your `headers` positional argument in any request is type of `Map`. But set-cookie can be used twice or more in one request. So it is not valid type for...

enhancement

Currently json api package requires http v0.13.x. Most up to date version of http package is v1.1.0.

Good day. I've tried to connect proxy man to my project and can't figure out how to set a proxy for this client. Is it possible?

Hey everyone, Currently, I am trying to do nested writes but I am not sure if we can achieve this in this library. More about nested writes / atomic operations...

It seems recent release is not compatible with current flutter stable release. http_interop v2 requires collection package version 0.19. Which isn't compatible with flutter_test from current flutter stable release ```...

Throw error when decode the body: ``` final response = await client.jsonapiClient.fetchCollection('node--gallery', query: [Query({'include': ['field_gallery_image']})]); final json = await response.httpResponse.body.decode(utf8); ``` Bad state: Stream has already been listened to.