Overview
Summary
Contact
Donate
Imprint
Prompt for the
GameSessionView
Please create a React-JS view called "GameSessionView" for the fields of the GameSession entity. The GameSessionView must contain the following fields: - name: EndedAt type: DATE - name: Game type: Game - name: Score type: INT - name: StartedAt type: DATE - name: User type: UserAccount The data source for the [Game] select control should be loaded from the relative URL: "/GameService/game" (HTTP-GET) The data source for the [User] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) An existing GameSession entity should be loaded from the relative URL: "/GameService/gamesession/{id}" (HTTP-GET) If a new GameSession entity has been created, the new entity should be posted to the relative URL: "/GameService/gamesession" (HTTP-POST) If an existing GameSession entity has been updated, the modified entity should be sent to the relative URL: "/GameService/gamesession/{id}" (HTTP-PUT) If an existing GameSession entity has to be deleted, the following relative URL should be called: "/GameService/gamesession/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint