made use of embedded resources for relationships in the response that contain a single link for a set of resources rather than enumerate the self link of each resource

This commit is contained in:
Art Lowel
2017-06-21 16:51:37 +02:00
parent 0bccc7c201
commit b46ad36eaf
6 changed files with 82 additions and 55 deletions

View File

@@ -2,10 +2,10 @@ import { Observable } from "rxjs";
import { PageInfo } from "../shared/page-info.model";
export enum RemoteDataState {
RequestPending,
ResponsePending,
Failed,
Success
RequestPending = <any> "RequestPending",
ResponsePending = <any> "ResponsePending",
Failed = <any> "Failed",
Success = <any> "Success"
}
/**