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
Calls are currently being made using Swell's own TRPCProxyClient generated from the URL provided by the user.
53
+
Batch requests must be entered one request per line. Swell will treat each line of code entered into the editor as a separate request before batching and returning responses.
54
+
Each request must follow the general format client.procedure.querytype(). For example:
55
+
56
+
```js
57
+
client.getUser.query({ name:'Luke Skywalker' });
58
+
```
59
+
60
+
See [tRPC docs](https://trpc.io/docs/) for more information on sending tRPC requests or setting up a tRPC server.
61
+
48
62
## Additional features
49
63
50
64
-_Stress testing for HTTP/2 and GraphQL_: Test your server backend with Swell's stress testing feature to ensure your server can manage expected and unexpected loads accordingly
@@ -70,20 +84,6 @@ Swell is a one-stop shop for sending and monitoring your API requests:
70
84
-_Mock Server_: Swell allows you to create your own HTTP/2 mock server to facilitate front-end development without depending on a fully built backend server.
Calls are currently being made using Swell's own TRPCProxyClient generated from the URL provided by the user.
78
-
Batch requests must be entered one request per line. Swell will treat each line of code entered into the editor as a separate request before batching and returning responses.
79
-
Each request must follow the general format client.procedure.querytype(). For example:
80
-
81
-
```js
82
-
client.getUser.query({ name:'Luke Skywalker' });
83
-
```
84
-
85
-
See [tRPC docs](https://trpc.io/docs/) for more information on sending tRPC requests or setting up a tRPC server.
86
-
87
87
-_Webhooks_: Swell includes user-defined HTTP callback connection testing designed to test other server's connection to the web and ability to send data. The test insures that when an event occurs, the source site makes an HTTP request to the URL configured for the webhook.
0 commit comments