This endpoint is under development
&page=1
default value 1 / not necessary&pageCount=5
default value 5 / not necessary
Filters only if all three arguments are passed:
&search=name
value search / not necessary&column=title
search column / type [title, quantity, distance] / not necessary&condition=equals
search condition / type [equals, contains, more, less] / not necessary
type ResponseType = {
arrData: DataType[]
totalCountData: number // amount of elements
page: number // selected page
pageCount: number // number of elements per page
}
type DataType = {
id: number
date: string
title: string
quantity: number
distance: number
}
type: description
The types will be like this:
feat
- - added a new function to the codefix
- - fixed a bug in the codestyle
- - added stylesrefactor
- - refactored somethingtest
- - created a testinfo
- - commit to check something, unimportant changes that do not affect the project
EXAMPLE:
test: create unit test for profile reducer
style: change styles for login component