You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This ticket marks the first issue after our successful initial build.
Here, I’m mapping out the next steps and reassessing the current status of the project.
What's working
All tests passed successfully.
The build is consistently successful across CI/CD pipelines for all three platforms (Windows, macOS, Linux).
Artifacts are available for download via the release page.
Installation works smoothly on Linux (to be tested on Windows and macOS).
The app launches and is immediately responsive for interaction.
With an active GraphQL server, we can run queries against the configured endpoint.
The app is responsive, and all window controls function as expected (minimize, maximize, close).
The query editor view formatting is functional.
Areas for improvemnt
Connection Status Clarity
When opening the app, there is currently no clear indication of the connection status to an endpoint (or if no endpoint is set).
For instance, the connection indicator changes from "DISCONNECTED" to "CONNECTED" only if the app opens with a pre-configured, active GraphQL server in the endpoint input.
For local testing, where we can launch the development server at /examples/graphql-server and refresh the app to observe status changes, this is manageable. However, for end users, this is suboptimal, as they need clear indicators of the application’s status to avoid guesswork and to easily understand what actions to take within the client.
Resolution
To enhance user experience, we need to ensure the application clearly communicates its current state to the user. Specifically:
The app should indicate connection states without requiring manual interaction or hidden configurations.
Since a GraphQL schema requires a connected endpoint, the app should listen for changes in the endpoint URL, derive the application state, and reflect these changes dynamically in the UI.
Steps
Run introspection queries to fetch the GraphQL schema upon connection.
Sync the fetched schema with the CodeMirror editor view.
Update the connection state (UNKNOWN → CONNECTING → CONNECTED | DISCONNECTED).
Periodically run introspection queries to maintain connection status, potentially using an exponential back-off strategy or fixed intervals.
The above process should be automated for sessions with prepopulated values (e.g., restoring sessions from a local store).
The text was updated successfully, but these errors were encountered:
This ticket marks the first issue after our successful initial build.
Here, I’m mapping out the next steps and reassessing the current status of the project.
What's working
Areas for improvemnt
Connection Status Clarity
When opening the app, there is currently no clear indication of the connection status to an endpoint (or if no endpoint is set).
For instance, the connection indicator changes from "DISCONNECTED" to "CONNECTED" only if the app opens with a pre-configured, active GraphQL server in the endpoint input.
For local testing, where we can launch the development server at
/examples/graphql-server
and refresh the app to observe status changes, this is manageable. However, for end users, this is suboptimal, as they need clear indicators of the application’s status to avoid guesswork and to easily understand what actions to take within the client.Resolution
To enhance user experience, we need to ensure the application clearly communicates its current state to the user. Specifically:
Steps
UNKNOWN
→CONNECTING
→CONNECTED
|DISCONNECTED
).The above process should be automated for sessions with prepopulated values (e.g., restoring sessions from a local store).
The text was updated successfully, but these errors were encountered: