Marcel Overdijk
Marcel Overdijk
Note that this works as well: ``` fuse.search({ $and: [ { 'title': '^old' }, { 'author.lastName: 'scal' }, ] }) ``` but `fuse.search('^old scal')` does not. The spaces seem not...
Please don not close, this is an actual issue.
Interesting discussion. Startup times on GAE are really important. Even using a cron job to keep an instance 'warm' is not a scalable solution. The time GAE needs an additional...
@reyez as you have deployed ninjaframework apps to GAE, what are the startup times you are seeing?
For my current apps startup times are also not important. They are mainly 'private' apps used by just a couple of users. So 1 instance is enough and I just...
@reyez indeed take it or leave it :-(
@ntyazid can you elaborate more what you are trying to do? (and also format the json)
@jasminb I was thinking of introducing dedicated `Fieldsets` and `Includes` objects that can be passed to overloaded `writeDocument` and `writeDocumentCollection` methods like: ``` writeDocument(JSONAPIDocument document, Fieldsets fieldsets) writeDocument(JSONAPIDocument document, Fieldsets...
I will provide an example later (not behind laptop atm). The `Fieldsets` class should indeed contain some static method to parse a query param.
@jasminb Could you maybe have a look at https://github.com/marceloverdijk/jsonapi-converter/commit/abaa618c0f86157425d0d746a887a6e5030869d6 ? This provides functionality for sparse fieldsets and user-defined inclusion of related resources as per the JSON:API spec. I still need...