Quite often i have a long respons time from i do q...
# prisma-whats-new
j
Quite often i have a long respons time from i do query og mutation. It can take several seconds. Is this usual? Its a tiny database, and the operation should be quite simpel.
Copy code
mutation createPost(
        $text: String!
        $lat: Float!
        $long: Float!
        $userId: ID,
    ) {
        createPost(text: $text, lat: $lat, long: $long, userId: $userId) {
            id
        }
    }