Blog
/
Education

Building internal tools with WunderGraph and Interval

cover
Eelco Wiersma

Eelco Wiersma

min read

Cosmo: Full Lifecycle GraphQL API Management

Are you looking for an Open Source Graph Manager? Cosmo is the most complete solution including Schema Registry, Router, Studio, Metrics, Analytics, Distributed Tracing, Breaking Change detection and more.

Building internal tools, you either love it or hate it. I've built a lot of tools over the years, usually from scratch, some with my own auto generated UI libraries, but these days I rather don't waste too much time on it anymore. On the other hand I'm still not hooked on no-code platforms. I feel like writing some quick code on your existing services and business logic is usually faster and you don't have to share any secrets with 3rd parties. Setting up the boilerplate and user interfaces of internal tools tends to be most of the work, so as a developer I rather use a low-code alternative. When I saw interval, I was immediately hooked. It allows you to simply write async functions with your own backend code and then automatically generate a frontend that can be used by non-techies.

I feel like combining this with WunderGraph is a match made in heaven. You can use WunderGraph to query all your backend services, like database and 3rd party APIs and then use Interval to build a UI for it.

In this guide, we'll explore how to build an internal tool using WunderGraph and Interval. We'll build a simple tool that allows you to manage users.

Getting started

Head over to Interval and create a new Interval app. We'll use the typescript template for this guide, so we can leverage WunderGraphs typesafety.

The create command includes your personal development key, so be sure to copy it from the Interval dashboard.

1

Interval creates a new interval by default, if you choose another directory use that instead in the following steps.

1

Next, we'll install WunderGraph. For this example we don't have any existing backend, so we'll start from scratch.

1

Great, now you can run the Interval app.

1

You'll see a message that says [Interval] 🔗 Connected! Access your actions at: https://interval.com/dashboard/eelco/develop. This is the URL where you can access your Interval app.

Adding a WunderGraph API

To make sure TypeScript operations work correctly we also need to make a small change to the tsconfig.json file. Copy tsconfig.json to tsconfig.build.json and make the following changes to tsconfig.json.

1
2
3
4
5
6
7
8
9

Let's make sure we run both Interval and Wundergraph with the dev command. First install npm-run-all, this allows us to run multiple commands in parallel.

1

Edit the package.json file and add the following script.

1
2
3
4
5
6
7
8
9
10

Now you can run yarn dev and both Interval and WunderGraph will be running.

The WunderGraph example app comes with a couple of example operations, let's add them to the Interval app. We'll use the WunderGraph TypeScript client to do this.

Edit .wundergraph/wundergraph.config.ts and add the following lines to codeGenerators, this will generate the client into the interval src directory.

1
2
3
4

Now let's add some routes to our App. Edit src/index.ts, you'll see there is just a hello_world route. Let's replace this with a User route, that gets a user by id.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

Save the file and head over to the Interval dashboard. You'll see that the User route is now available. You can click on it to test it out.

Let's say we want to be able to edit the user, we can do so by adding a link to a new editUser route.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58

To test this click on the User action and enter a user id. You'll see the user details and a link to edit the user. Click on the link and you'll be able to edit the user.

When you click EditUser from the home screen, the action is completed, which is not very useful. We can fix this by adding a search.

Create a new operation in .wundergraph/operations/users/search.ts and add the following code.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25

Now we can add a search to the EditUser route.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47

Awesome! We can now search and edit users.

This was just a simple introduction to how you can use WunderGraph with Interval, but the possibilities are endless. By adding extra services to the WunderGraph virtual graph you can easily add more functionality to your Interval app. Like inviting users, refunding payments, creating flows to enrich data, etc.

If you liked this post let me know in the comments or message me on Twitter , I'd love to go deeper into this topic in another post.

Resources