diff --git a/docs/ka/docs/index.md b/docs/ka/docs/index.md index 21fcf3471..e2f349480 100644 --- a/docs/ka/docs/index.md +++ b/docs/ka/docs/index.md @@ -272,21 +272,29 @@ You can read more about it in the http://127.0.0.1:8000/items/5?q=somequery. +თქვენს ბრაუზერში გახსენით შემდეგი ბმული: http://127.0.0.1:8000/items/5?q=somequery. You will see the JSON response as: +დაინახავთ შემდეგნაირ JSON ტიპის მონაცემს: ```JSON {"item_id": 5, "q": "somequery"} ``` You already created an API that: +ამგვარად, თქვენ უკვე შექმენით API, რომელიც: * Receives HTTP requests in the _paths_ `/` and `/items/{item_id}`. +* იღებს HTTP მოთხოვნებს შემდეგ _მისამართებზე_: `/` და `/items/{item_id}`. * Both _paths_ take `GET` operations (also known as HTTP _methods_). +* ორივე მისამართი ამუშავებს `GET` ოპერაციას (ასევე ცნობილს, როგორც HTTP _მეთოდი_). * The _path_ `/items/{item_id}` has a _path parameter_ `item_id` that should be an `int`. +* `/items/{item_id}` მისამართს გააჩნია _მარშრუტის პარამეტრი_ `item_id`, რომელიც უნდა იყოს მთელი რიცხვის (`int`) ტიპის. * The _path_ `/items/{item_id}` has an optional `str` _query parameter_ `q`. +* `/items/{item_id}` მისამართს გააჩნია არასავალდებულო სტრიქონის (`str`) ტიპის _საძიებო (query) პარამეტრი_ `q`. ### Interactive API docs