kxkannan
Hello,
We have a pretty mature GraphQL API that our front-end iOS app uses to communicate with the backend to authenticate, query and mutate. There is also another Python SDK layer that uses this GraphQL API.
Now we are planning to develop our Web app using Phoenix framework and the question is should we be using the same GraphQL API to interact with the server or make calls directly to the Module.functions (i.e User.login(email, password) instead of calling the login GraphQL api. I am leaning towards using the GraphQL api for all the query/mutations for the Webapp as I am worried about session management, cookies, caching etc that comes into play in a typical web app.
Are there any pros/cons to consider? What do people generally use?
Trending in Discussions
As the title says, please share what you’ve been up to with Elixir. Whether that’s been learning it, looking into it, making stuff with i...
New
The obligatory hello world thread!
Who are you and where are you from? :stuck_out_tongue:
New
I want to open this thread for you all to discuss and help those who really like Ash but are still hesitant to use it in a real project. ...
New
We’re evaluating API mocking tools for OpenAPI-based projects and would love to hear what other teams are using.
We’re particularly inte...
New
Is there a word for the ~> symbol used in Version strings?
Do you also just call it a Squiggle Arrow™ ?!
New
I’m posting this in response to Jose’s recent tweet (Cr. link) :
People are sleeping on Elixir for a coding harness:
Hot-code swappi...
New
AcmeScript — Writing JS hooks as if I were still using Elixir
I’ve been having fun building a little something over the last few days: Ac...
New
Other Trending Topics
Ciao everyone :waving_hand:
So, for a long time ExWapp was a private library. I was using it in different products built for my clients ...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
There are three potential reasons for members of this forum to have a look at https://vutuv.de
You are tired or annoyed of LinkedIn.
Yo...
New
Latest Phoenix Threads
Latest on Elixir Forum
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #blog-post
- #elixir-ls
- #ai
- #elixirconf-us
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 5- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
mindok
We built the web application first and directly access modules, and use GraphQL to server to iOS so a slightly different scenario.
I would be personally be inclined to talk directly to the module functions and bypass a whole load of overhead of handling the GraphQL call, encoding the response, decoding the response, rebuilding structs for the web application to interact with - it will make coding harder and the system less performant to have all those extra, unnecessary layers in there.
Could you elaborate on your worries about session management, cookies, caching etc that you think using GraphQL will solve for?
kxkannan
Thanks for the response @mindok.
I am just generally asking about any issues we will run into with session management, cookies, caching etc. Have you guys ran into any of these issues?
If you decide to separate the web application code from your server-side code (for whatever reason - like running it on a separate server etc.) having this direct coupling would be bad and have to refactor to make api calls. That is not in our plan currently, but just thinking about it for the future.
mindok
No issues so far. We use Phoenix infrastructure with very little modification for cookies and session. We do have a custom plug to handle auth - there are plenty of examples around for that if you deviate from Phoenix gen auth. Passing session state (e.g. user identity) into liveviews is also well covered and documented now.
For caching, it depends on your use-case. We primarily use liveviews throughout our web application. State is held in the process backing the liveview which is great for long-running editing sessions. However, ours is a pretty specific use-case - a small number of power users that use the system all day every day. The templating engine in Phoenix is so ridiculously fast, the need for caching is a lot less than for other frameworks (there’s an article on IO Lists that explains why: https://bignerdranch.com/blog/elixir-and-io-lists-part-1-building-output-efficiently/). You have straightforward and direct access to the HTTP response headers, so if you need to manipulate http cache control, you can. There’s also the excellent cachex | Hex for keeping data in memory across requests & sessions.
Fair enough. However, you are likely to need to consider scaling a lot earlier if you create unnecessary system overhead
. The way we’re looking at it is to keep our team as tiny as possible for as long as possible while the business ramps up around the product. A well-structured monolith lets us do that. If we need to scale, we can run the main application on multiple servers / VMs and have them talk to each other using the baked in capabilities of Erlang and Phoenix. If, for whatever reason, we do need to separate API server from web server, we’d be wanting to be extremely well paid for it so will organise for one or more of the luminaries in the community to sort it out for us! But thinking about it, we’d probably look at compile-time settings to enable / disable the graphql routes or the web application routes and maintain the same codebase for both.
kxkannan
Thanks for your details response @mindok - really appreciate your feedback.
I am now able to call the module.function to get the login working. Since the liveview doesn’t have access to
connobject and only thesocket- what is the approach to store thecurrent_user(logged in user) in thesession? I see there are libraries likephoenix_live_sessions(PhoenixLiveSession — phoenix_live_session v0.1.3).Any suggestions would be helpful as I am trying to figure out the logged in sessions and how to keep track of it during page reloads and opening new browser tabs on the same browser etc.
mindok
Hi @kxkannan,
Transferring credentials from the conn to the socket is discussed in the LiveView docs here:
Security considerations — Phoenix LiveView v1.2.5.
There is a pretty decent explanation of how it all hangs together here: Securing Your Phoenix LiveView Apps | AppSignal Blog
Basically, the “session” parameter in the
mountcallback in your liveview should contain the credentials, and you transfer the credentials to the liveview socket there. However, rather than do this across all liveviews, you can define a hook shared across them. The wire-up to connect a specificon_mounthook to a group of liveviews is done in the router usinglive_session.