Kasper Mikiewicz
Kasper Mikiewicz
@23doors Sending PATCH request to this url with `{"field_name": {"_increment": 1}}` works fine ``` https://api.syncano.rocks/v2/instances/late-hill-3922/classes/posts/objects/:object_id/ ``` Would it be possible to handle increment for multiple objects? ``` https://api.syncano.rocks/v2/instances/late-hill-3922/classes/posts/objects/ ```
Ok, then I'll implement: 1. Using _increment property ```js data.posts.increment(100, 'views', 1) // Post id, column, value ``` 2. First fetch all objects, then update value with batch query. NOT...
@23doors It's not very important feature but in future please think about implementing this in platform.
This works for me in nuxt 3: ```ts import { defineNuxtConfig } from 'nuxt' import IconsResolver from 'unplugin-icons/resolver' import Icons from 'unplugin-icons/vite' import Components from 'unplugin-vue-components/vite' // https://v3.nuxtjs.org/api/configuration/nuxt.config export default...
Is this issue open for PR? I can try to implement `types.set`.
I'm working on adding user accounts to let user save their snippets. I guess this will resolve edits issue 
Thanks, this is really interesting feature but let's wait a little bit until I'm done with new version - it will be a massive update. In meantime it would be...
@riotrah Hey, thanks for push, I've restarted my work on Snatch 2.0. You can follow updates on my twitter https://twitter.com/Idered/status/1584661019309142016
In future it might work during `tsc` build but currently TypeScript compiler doesn't support plugins. Related issues: - https://github.com/microsoft/TypeScript/issues/38736 - https://github.com/microsoft/TypeScript/issues/16607 This plugin is currently only for editor experience. I...
@albizures I could recreate this as eslint plugin - it would allow to run tests by running `eslint` command