Overview
Summary
Contact
Donate
Imprint
Prompt for the
SavedCollectionItemView
Please create a React-JS view called "SavedCollectionItemView" for the fields of the SavedCollectionItem entity. The SavedCollectionItemView must contain the following fields: - name: AddedAt type: DATE - name: Post type: Post - name: SavedCollection type: SavedCollection The data source for the [SavedCollection] select control should be loaded from the relative URL: "/SavedCollectionService/savedcollection" (HTTP-GET) The data source for the [Post] select control should be loaded from the relative URL: "/UserAccountService/post" (HTTP-GET) An existing SavedCollectionItem entity should be loaded from the relative URL: "/SavedCollectionService/savedcollectionitem/{id}" (HTTP-GET) If a new SavedCollectionItem entity has been created, the new entity should be posted to the relative URL: "/SavedCollectionService/savedcollectionitem" (HTTP-POST) If an existing SavedCollectionItem entity has been updated, the modified entity should be sent to the relative URL: "/SavedCollectionService/savedcollectionitem/{id}" (HTTP-PUT) If an existing SavedCollectionItem entity has to be deleted, the following relative URL should be called: "/SavedCollectionService/savedcollectionitem/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint