We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1962601 commit 9828b4dCopy full SHA for 9828b4d
example/src/index.ts
@@ -19,7 +19,7 @@ Article.findById('1')
19
Comment.find()
20
.then((comments) => console.log(comments));
21
22
-// GET /comments/1 HTTP/1.1
+// GET /comments/5 HTTP/1.1
23
Comment.findById('5')
24
.then((comment) => console.log(comment));
25
@@ -28,6 +28,6 @@ Comment.findById('5')
28
People.find()
29
.then((peoples) => console.log(peoples));
30
31
-// GET /people/1 HTTP/1.1
+// GET /people/9 HTTP/1.1
32
People.findById('9')
33
.then((people) => console.log(people));
0 commit comments