-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from nramc/22-feat-implement-get-all-journeys-…
…with-basic-query-params 22 feat implement get all journeys with basic query params
- Loading branch information
Showing
4 changed files
with
185 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 39 additions & 0 deletions
39
src/test/resources/data/find-all-journey/all-journey-page-format.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{ | ||
"content": [ | ||
{ | ||
"id": "ID_5", "name": "First Flight Experience", "title": "One of the most beautiful experience ever in my life", | ||
"description": "Travelled first time for work deputation to Germany, Munich city", "category": "Travel", | ||
"city": "Munich", "country": "Germany", "tags": ["Travel", "Germany", "Munich"], "thumbnail": "valid image id", | ||
"location": {"type": "Point", "type": "Point", "coordinates": [48.183160038296585, 11.53090747669896]}, | ||
"journeyDate": "2024-03-27", "createdDate": "2024-04-01" | ||
}, { | ||
"id": "ID_6", "name": "First Flight Experience", "title": "One of the most beautiful experience ever in my life", | ||
"description": "Travelled first time for work deputation to Germany, Munich city", "category": "Travel", | ||
"city": "Munich", "country": "Germany", "tags": ["Travel", "Germany", "Munich"], "thumbnail": "valid image id", | ||
"location": {"type": "Point", "type": "Point", "coordinates": [48.183160038296585, 11.53090747669896]}, | ||
"journeyDate": "2024-03-27", "createdDate": "2024-04-02" | ||
}, { | ||
"id": "ID_7", "name": "First Flight Experience", "title": "One of the most beautiful experience ever in my life", | ||
"description": "Travelled first time for work deputation to Germany, Munich city", "category": "Travel", | ||
"city": "Munich", "country": "Germany", "tags": ["Travel", "Germany", "Munich"], "thumbnail": "valid image id", | ||
"location": {"type": "Point", "type": "Point", "coordinates": [48.183160038296585, 11.53090747669896]}, | ||
"journeyDate": "2024-03-27", "createdDate": "2024-04-03" | ||
}, { | ||
"id": "ID_8", "name": "First Flight Experience", "title": "One of the most beautiful experience ever in my life", | ||
"description": "Travelled first time for work deputation to Germany, Munich city", "category": "Travel", | ||
"city": "Munich", "country": "Germany", "tags": ["Travel", "Germany", "Munich"], "thumbnail": "valid image id", | ||
"location": {"type": "Point", "type": "Point", "coordinates": [48.183160038296585, 11.53090747669896]}, | ||
"journeyDate": "2024-03-27", "createdDate": "2024-04-04" | ||
}, { | ||
"id": "ID_9", "name": "First Flight Experience", "title": "One of the most beautiful experience ever in my life", | ||
"description": "Travelled first time for work deputation to Germany, Munich city", "category": "Travel", | ||
"city": "Munich", "country": "Germany", "tags": ["Travel", "Germany", "Munich"], "thumbnail": "valid image id", | ||
"location": {"type": "Point", "type": "Point", "coordinates": [48.183160038296585, 11.53090747669896]}, | ||
"journeyDate": "2024-03-27", "createdDate": "2024-04-05" | ||
} | ||
], "pageable": { | ||
"pageNumber": 1, "pageSize": 5, "sort": {"unsorted": false, "sorted": true, "empty": false}, "offset": 5, | ||
"paged": true, "unpaged": false | ||
}, "totalPages": 2, "totalElements": 10, "last": true, "numberOfElements": 5, | ||
"sort": {"unsorted": false, "sorted": true, "empty": false}, "size": 5, "first": false, "number": 1, "empty": false | ||
} |