john-kelly / elm-postgrest

Make PostgREST requests in Elm
109 stars 14 forks source link

limit data type overly complicated #29

Closed john-kelly closed 7 years ago

john-kelly commented 7 years ago

now:

type Limit
    = Limit (Maybe Int)

proposed:

type Limit
    = NoLimit 
    | LimitTo Int