Almas Akchabayev

Results 13 issues of Almas Akchabayev

For some reason delete does not actually delete a message. Here is a relevant test. You can skip first three lines related to phoenix, it is related to the code...

Good day, I am new to Elixir and erlang, I am now playing with amnesia in phoenix application. I am unsure how to setup testing environment in phoenix application with...

Could you please add a falcor to the stack. Really interested on how it will play out. I am trying currently to make a simple todo app, but my implementation...

Hello, Suppose I have a model Player: ``` const Player = thinky.createModel('Player', { email: type.string().email(), password: type.string() }); ``` And I have a relationships: ``` Player.hasMany(Game, 'hostedGames', 'id', 'hostId'); Player.hasAndBelongsToMany(Game,...

feature

can you give directions on how you would go about adding falcor, please

Thanks a lot for the library! I wanted to clarify a few things: 1) Is it safe to use in a real project? 2) Should I use master branch or...

Moreover `model.withoudDataSource().set(...)` does not increment cache verison I saw it in this issue https://github.com/Netflix/falcor/issues/563 and also wondering what is the best way to set data locally.

bug

I have removed asap dependencies from falcor master branch, and it does work with cache. But when I include `source: new FalcorHttpDatasource('http://localhost:9090')` data is not received. Not sure what is...

PR's Welcome

I have the following setup in mocha: ``` describe('Falcor requests', function() { let server; before(function() { const app = express(); app.use(routes); model = new falcor.Model({ source: new HttpDataSource('http://localhost:1337/model.json') }); });...

Hello! Thanks for this awesome library If I understand correctly than cache store's key is constructed using `JSON.stringify` and hashing. However `JSON.stringify` does not handle function properties. The problem is...