Hi team! I'm trying to port a ruby codebase over t...
# orm-help
j
Hi team! I'm trying to port a ruby codebase over to node + prisma. I'm having trouble replicating this functionality though
Copy code
ActiveRecord::Base.connection.execute(
      <<-SQL
        SET "hasura.user" = '#someuser'
      SQL
    )
How can I inject this sort of behaviour into prisma? Or is it just not possible?
1
n
Hey Jacob 👋 When do you want to run the above SQL statement? You should be able to execute it using Raw Query