Make sure that httpClient uses standard bodyParser or a parser that returns complete body of server's response (an object including at least data property).
Usage
An instance of JsonApiClient exposes a collection of get(), getList(), post(), remove(), put() and patch() methods. Each method returns a request builder. For example:
import { Data, FilterOperator, MergedData, ResolvedRelationship, RelationshipArray } from'@coolio/json-api';import { Config } from'./config';import { jsonApiClient } from'./apiClient';// First, define Attributes and Relationships for your API modelsexportinterfaceAddressAttributes { street:string; buildingNumber:string; city:string; zipCode:string; state?:string; country:string;}exporttypeAddressData=Data<AddressAttributes>;exportinterfaceUserAttributes { name:string; surname:string; email:string;}exportinterfaceUserRelationships { address:ResolvedRelationship<AddressData>; // This relationship will be merged as a field into User. devices:RelationshipArray; // The result is only an array of identifiers}// JSON API-compatible type:exporttypeUserData=Data<UserAttributes,UserRelationships>;// Parsed type, for easier use in your code:exporttypeUser=MergedData<UserData>;// The above `User` type is equal to such structure:interfaceUserDefinedManually { id:string; // Identifier from JSON API type:string; // Type from JSON API self:string; // Self field from JSON API name:string; surname:string; email:string; address: { id:string; // Identifier from JSON API type:string; // Type from JSON API self:string; // Self field from JSON API street:string; buildingNumber:string; city:string; zipCode:string; state?:string; country:string; } devices:string[]; // Array of identifiers extracted from JSON API's relationships}constgetUsers=jsonApiClient.getList<UserAttributes>(`${Config.API_BASE_URL}/users`).filter('name','John',FilterOperator.LIKE)// Pagination can be done by passing offset and limit.pageOffset(30).pageLimit(10)// Pagination can be also done by passing page number.pageNumber(3)// Merges the data in "included" response property into values in "data".resolveIncluded().send({// other http options that can be passed to a standard httpClient method });exportconstUsersRepository= { getUsers,}
UsersRepository.getUsers() method presented above returns a Promise<JsonListResponse<UserAttributes, UserRelationships>>. @coolio/json-api merges attributes and relationships automatically.