How I can handle polymorphic association using hasura graphql engine PostgreSQL,means for example assume there is video,post,user table and all need to have photo what I did before is post_photo,user_photo ... make relationship for each table with photo but now I need to do using polymorphic association like photos(id,imagableType,imagableId,imgUrl)
I tried to relate in sql