Skip to content

Commit

Permalink
:doc: add result to getting start doc
Browse files Browse the repository at this point in the history
  • Loading branch information
hemedani committed Oct 22, 2023
1 parent bcfa726 commit 0a1ac27
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 5 deletions.
12 changes: 11 additions & 1 deletion docs/getting_start.html
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,17 @@ <h2 id="the-code"><a class="header" href="#the-code">The code</a></h2>
}
}
</code></pre>
<p>for inserting a new country.</p>
<p>for inserting a new country. You shuold get this result:</p>
<pre><code class="language-JSON">{
&quot;body&quot;: {
&quot;_id&quot;: &quot;6534d7c6c5dec0be8e7bf751&quot;,
&quot;name&quot;: &quot;Iran&quot;,
&quot;population&quot;: 85000000,
&quot;abb&quot;: &quot;IR&quot;
},
&quot;success&quot;: true
}
</code></pre>

</main>

Expand Down
12 changes: 11 additions & 1 deletion docs/print.html
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,17 @@ <h2 id="the-code"><a class="header" href="#the-code">The code</a></h2>
}
}
</code></pre>
<p>for inserting a new country.</p>
<p>for inserting a new country. You shuold get this result:</p>
<pre><code class="language-JSON">{
&quot;body&quot;: {
&quot;_id&quot;: &quot;6534d7c6c5dec0be8e7bf751&quot;,
&quot;name&quot;: &quot;Iran&quot;,
&quot;population&quot;: 85000000,
&quot;abb&quot;: &quot;IR&quot;
},
&quot;success&quot;: true
}
</code></pre>
<div style="break-before: page; page-break-before: always;"></div><h1 id="receive-data"><a class="header" href="#receive-data">Receive data</a></h1>
<p>One of the biggest challenges for implementing data retrieval capability in Lesan was when the customer requested dependencies of a table with more than two levels of penetration in depth.</p>
<p>Let us review the previous methods before explaining Lesan's method.</p>
Expand Down
2 changes: 1 addition & 1 deletion docs/searchindex.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/searchindex.json

Large diffs are not rendered by default.

13 changes: 12 additions & 1 deletion pages/src/getting_start.md
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,17 @@ or postman:
}
}
```
for inserting a new country.
for inserting a new country. You shuold get this result:
```JSON
{
"body": {
"_id": "6534d7c6c5dec0be8e7bf751",
"name": "Iran",
"population": 85000000,
"abb": "IR"
},
"success": true
}
```


0 comments on commit 0a1ac27

Please sign in to comment.