Results 210 comments of Daniel

@mtrezza could you please update the spec: https://github.com/parse-community/parse-server/wiki/Parse-LiveQuery-Protocol-Specification#subscribe-message

@dplewis see https://github.com/parse-community/parse-server/issues/7277#issuecomment-801953151

Yes it does, that's why it defaults to `false` at the moment

@tremendus can you try adding this to your Vite configuration: ``` export default defineConfig({ resolve: { alias: { '@': path.resolve(__dirname, '/src'), parse: path.resolve(__dirname, './node_modules/parse/dist/parse.min.js') }, }, ... }) ```

It's ready for merge if you are ok!

There is still a bit to do in this PR - just looking for general feedback about the approach @parse-community/server-review

Getting this to work with generics is a little bit too hard for now

@Moumouls how is this coming along? Would be good to have implemented for Parse Server 6

Try add this to your vite config: ``` resolve: { alias: { '@': path.resolve(__dirname, '/src'), parse: path.resolve(__dirname, '/node_modules/parse/dist/parse.min.js') }, }, ```