Is it possible to do something like live queries currently in Prisma/Apollo? I have a third party REST endpoint that I need to poll for pretty much the entire usage cycle of my application. And I've got it wrapped in GraphQL on the server side, as our API is built with Prisma/Apollo... Right now, this is just a simple query that passes the request along to the REST endpoint, then cherry picks some things out of the response, along with adding in some extra data...and pushes a response back to the client application. It'd be hell of slick if our client application didn't have to repeatedly hit our endpoint... My gut says that is not really possible, though.