It’s a particular pattern that I learned while at bootcamp and really liked. Maybe you know it as a service? The idea is that all db interactions (e.g. anything with fetch) runs through a seperate adapter, so we better isolate our layers and dry out our code. So if two different pieces of code both need to get a user with an Id of one, they call the same function. If the url or fetching logic changes, I just have to update the adapter and all other parts still work the same. It’s sort of like how on the backend, your route handlers never touch the db, they interact with models, which are the ones who actually make the queries to the db. How do you interact with fetches? I’m sure there are lots of ways!