Strapi 3: Resolver for nested custom type

System Information
  • Strapi Version: 3
  • Operating System: Linux
  • Database: Postgres
  • Node Version:
  • NPM Version:
  • Yarn Version:

Hi guys, I’m trying to make a custom resolver for the third layer of this query:

query EmbeddedModules {
  products (where: {
    Slug: "pax"
  }) {
    Modules {
        Order
        TestModule {
          id
          Type
          Title
        }
      }
  }
}

Where Modules is a collection, and TestModule a model. Is it possible to make a resolver for TestModule that will be triggered with this querry in Strapi 3 ?

I found out from this Issue that it wasn’t possible at the beginning of the V3, but I can’t find if it has been released on the V3 milestone.