Extend JSON fields with more specific types
You might already know that WunderGraph uses Prisma to let you connect to a database such as SQLite, MySQL, PostgreSQL, SQL Server, or MongoDB. The full list of supported DataSources can be found in the
Thanks to the feedback from our lively community, we've realised that it's a common use case to store JSON columns in your database. If you're using a database like PostgreSQL, you can use the json
or jsonb
type to store JSON columns. These columns would be represented in the GraphQL schema as a JSON
scalar type.
If you're familiar with TypeScript, we're essentially treating JSON columns as the any
type. Internally, we're JSON-encoding the value to a string before storing it in the database and decoding it when reading it from the database. This way, a field with the JSON
scalar type is very easy to use already.
However, there's a drawback with this approach: if you're storing complex JSON objects, you're not able to leverage the type system of GraphQL. There's no easy way to select a specific field from a JSON object. You have to manually parse it and extract the field you want.
This is where the replacement strategy presents a solution to this problem. WunderGraph allows you to extend the GraphQL Schema and replace specific JSON fields with a custom type. This way you can leverage the type system of GraphQL while being able to store the data as a JSON object in your database.
An import note about replacement scalars after SDK version 0.162.0
Before wundergraph/sdk version 0.162.0, the entityName
property would match as a substring for any schema type. While this was convenient for changing a common field on multiple types, this behaviour would create undesired replacements.
Consequently, you must now provide explicit information for each and every replacement you wish to make.
Full documentation for schema extension can be found here.
Example
Let's have a look at an example—a simple chat application where we use a JSON column to store some extra information attached to the messages.
Step 1: Introspect your database
We simply point WunderGraph to the database we're using. You can learn more about configuring a PostgreSQL datasource here.
We're showcasing this approach with PostgreSQL, but you can use any supported database you like.
This is how our GraphQL Operations would appear before adding a custom type:
The first Operation allows a user to create a new message. We're injecting the $email
and $name
variables from the Claims provided by the users' identity provider. The $message
variable is of type String!. The $payload
variable is of type JSON!, so there's no way to validate the input—the user could send any legal JSON object.
If you're wondering how the @fromClaim
directive works, have a look at the @directives
section of the reference. The Custom Claims documentation can also be found here.
The second Operation allows a user to fetch all messages. Similarly to the mutation, we're not able to "look into" the payload field. It's a scalar type, so the client needs to know how to parse it. But what happens if a user stores an unexpected object in the payload field? There's no way to validate the input.
As you can see, using a JSON column gives you a lot of flexibility. At the same time, this approach comes with a few drawbacks.
Step 2: Extending the GraphQL schema with our custom type
First, we need to add a "schema extension" to our GraphQL schema. This extension needs to define the custom types that will be used to replace the JSON type for the payload field. We'll need an Input type for mutations and an Object type for queries.
Next, we define which JSON fields we want to replace. We will require a separate replacement definition configuration for each field we want to replace. In our case, the entity (table) is messages
and the field is payload
.
Step 3: Altering the GraphQL Operations to select on the new, type-safe fields
Now that we've added our custom type, we have to modify our GraphQL Operations. The mutation now must use db_MessagePayloadInput
as the Input type. WunderGraph is now automatically generating a JSON-Schema validation middleware for each GraphQL Operation, so input for the $payload
variable is validated.
Additionally, you can see that we now have to select the extra
field from the MessagePayload
type in the response. As the payload
field no longer returns a scalar type, we must make a selection. This gives us the additional benefit that a generated client can directly access the extra
field without having to parse the JSON object.
Similarly to the mutation, our Query to get the top20 messages also needs adjustment. We must select the extra
field that provides us type safety for the client.
Type-Safety for the Client
With everything in place, we're now able to store our custom message extension using a JSON column but leverage the GraphQL type system for type-safe field access.
Here's an example snippet how a client can access the extra
field:
The field message.payload.extra
in the generated TypeScript client has the type string
. If we were not using this approach, message.payload
would simply be treated as the any
type.