Overview
Summary
Contact
Donate
Imprint
Prompt for the
ReactionView
Please create a React-JS view called "ReactionView" for the fields of the Reaction entity. The ReactionView must contain the following fields: - name: Comment type: Comment - name: CreatedAt type: DATE - name: Post type: Post - name: ReactionType type: ReactionType - name: User type: UserAccount The data source for the [Comment] select control should be loaded from the relative URL: "/UserAccountService/comment" (HTTP-GET) The data source for the [ReactionType] select control should be loaded from the relative URL: "/PostService/reactiontype" (HTTP-GET) The data source for the [User] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) The data source for the [Post] select control should be loaded from the relative URL: "/PostService/post" (HTTP-GET) An existing Reaction entity should be loaded from the relative URL: "/PostService/reaction/{id}" (HTTP-GET) If a new Reaction entity has been created, the new entity should be posted to the relative URL: "/PostService/reaction" (HTTP-POST) If an existing Reaction entity has been updated, the modified entity should be sent to the relative URL: "/PostService/reaction/{id}" (HTTP-PUT) If an existing Reaction entity has to be deleted, the following relative URL should be called: "/PostService/reaction/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint