Is it possible to Query-join a table and storage ?

#
# table
#
user {
    a: string
    b: string
}


#
# storage
#
pictures: {
    profile: File
}


desired query result:
{
  a: string,
  b: string,
  profile: File
}


How can I achieve this?
Was this page helpful?