AlecAivazis / graphql-over-kafka

A framework for building event-driven microservice applications in python
MIT License
19 stars 3 forks source link

Added support for segmentation #52

Closed janjaapbos closed 8 years ago

janjaapbos commented 8 years ago

First is forward scrolling from offset if given. Last is reverse scrolling from offset if given. Default order_by is the primary key. To order on multiple columns, separate the fields with ",". To optionally specify ascending or descending order, prepend a "+" or "-" to the field. E.g. "-first_name, last_name".

AlecAivazis commented 8 years ago

Thanks for doing this, I'll take a look this week and try to merge it ASAP.

AlecAivazis commented 8 years ago

Also, unless i'm mistaken this answers #45 right?

janjaapbos commented 8 years ago

Yes, this answers #45 Thanks.