Tengo una base de datos de firestore, la colección de momentos destacados tiene una colección de eventos dentro, que también tiene una colección de juegos dentro. estoy usando gatsby-source-firestore

en mi gatsby-config.js
{ resolve: `gatsby-source-firestore`, options: { // credential or appConfig credential: require(`./credentials.json`), appConfig: { apiKey: "XXXXXXXXXXXXXXXXXX", authDomain: "XXXXXXXXXXXXX", databaseURL: "XXXXXXXXXXXXX", projectId: "XXXXXXXXXXXx", storageBucket: "XXXXXXXXXXXXXX", messagingSenderId: "XXXXXXXXXXXX", appId: "XXXXXXXXXXXXXXXx", measurementId: "XXXXXX" }, types: [ { type: `Games`, collection: `game`, map: doc => ({ name: doc.name, game_id:doc.game_id, //event___NODE: doc.event.id, }), }, { type: `Events`, collection: `event`, map: doc => ({ name: doc.name, id: doc.id }), },y quiero hacer lo mismo con las colecciones de Highlights para obtenerlas eventualmente con GraphQL:
{ type: `Highlights`, collection: `highlights`, map: doc => ({ // here to add the tag field // here to add the team field }), },