How to get relations from "me" data with graphql

import { list } from “nexus” 

t.field(“product”, { type: list(“Product”) }

Note: depending on which type you choose, you might need to write your own resolver for the type.

Some suggestions

  1. Use graphql playground or Apollo sandbox to look at the available types (Studio)

  2. Look at strapi source code + nexus docs for more examples.