Ali Sci

Results 16 comments of Ali Sci

> @arnotes I recommend looking at: https://github.com/SmileyChris/graphql-ws I tried it before it did not work for me

> I'm having a similar issue. Both FB & Google providers assign the same user. > > Did you find out what could be the reason ? @aliscie * Yes...

@anastasiyamykolenko did you solved id yet? I am facing the same problem [ i posted it here on github and stackoverflow ](https://github.com/python-social-auth/social-app-django/issues/305)

> http://localhost:8000 that is working, thank you. but when `python manage.py runserver` i still get a message ` Starting development server at http://127.0.0.1:8000/` how to change that message

> core-js how to fix it? what is `core-js version `?

> Hi, > I am creating a simple project that implements both GraphQL playground as well as a Custom view (which is queried from frontend with javascript fetch API). >...

I am also trying to create a subscription in graphene since 7 days ago and I tried everything. did you try something that may work?

I tried using it but what is the `ArgumentEncoder`?? ```rs async move { let greeting = call(principal, "greet", ("Ali")).await.unwrap(); }; ``` # error ```rs 27 | let greeting = call(principal,...

any code example pls?? I was trying this but my code is incomplete ```rs #[allow(dead_code)] #[tauri::command] async fn open_docs() { let handle: tauri::AppHandle = tauri::AppHandle(); let docs_window = tauri::WindowBuilder::new( &handle,...

> https://tauri.app/v1/guides/features/command#accessing-an-apphandle-in-commands in the frontend how can I run this? like this? ```rs //my rust frontend let app_handle = somthing_that_i_dont_know spawn_local(async move { invoke_async("my_custom_command",(app_handle,)).await }); ``` My tasks is very...