Skip to content

Eugene-ak/blog-app-backend

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Get all posts from database

GET {{BASE_URL}}

Sample respone

{
  "blogs": [
    {
      "_id": "659d9db9cfbc5061b350bed9",
      "heading": "Testing2",
      "field": "Test2",
      "content": "Testing server 2",
      "author": "Eugene Amedior",
      "date": "2024-06-01T00:00:00.000Z",
      "createdAt": "2024-01-09T19:25:45.880Z",
      "updatedAt": "2024-01-09T19:25:45.880Z",
      "__v": 0
    }
  ]
}

Find one post using database id

GET {{BASE_URL}}/659d9db9cfbc5061b350bed9

Sample respone

{
  "_id": "659d9db9cfbc5061b350bed9",
  "heading": "Testing2",
  "field": "Test2",
  "content": "Testing server 2",
  "author": "Eugene Amedior",
  "date": "2024-06-01T00:00:00.000Z",
  "createdAt": "2024-01-09T19:25:45.880Z",
  "updatedAt": "2024-01-09T19:25:45.880Z",
  "__v": 0
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published