Kamil

Results 5 comments of Kamil

I found a sollution for integration tests. You can check this link for integration test. [integration_tests](https://www.nibor.org/blog/integration-testing-a-service-written-in-rust-and-iron/) I will complete integrations tests and push issue asap.

@serayuzgur I am thinking to change code like below. ```rust // main.rs #![warn(missing_docs)] extern crate weld; use weld::start_application; fn main() { start_application(); } ``` moved all main code in lib.rs....

I got error after some queries and application crashed. Error Detail : Some(Queries { fields: [], filter: [], q: None, paginate: (OFFSET(0), LIMIT(5)), slice: [], sort: [] }) paging LIMIT(5)...

I checked the issue. It's ok about selection and paging. Selection Test: http://localhost:8081/posts?_fields=author 👍 http://localhost:8081/posts?_fields=author,tags 👍 Paging Tests: OK - http://localhost:8081/posts?_limit=1 👍 - http://localhost:8081/posts?_offset=1 👍 - http://localhost:8081/posts?_offset=1&_limit=1 👍 Selection and...

Hello, Can you use `0.5.1.0-beta.25` version from **bintray** repository.You can use below dependency code. ```xml https://dl.bintray.com/robeio/maven robeBintray 1.0.5 0.5.1.0-beta.25 io.robe robe-mail ${robe.version} io.robe robe-guice ${robe.version} io.robe robe-assets ${robe.version} io.robe robe-auth...