Screen.Recording.2023-11-06.at.11.30.50.mov

GraphQL query

{
  counters {
    _id
    description {
      short {
        markdown
      }
    }
    translations {
      en {
        name
      }
    }
    catalog {
      _id
      description {
        short {
          markdown
        }
      }
      translations {
        en {
          name
        }
      }
    }
  }
}

Counter document

{
  "_id": {
    "$oid": "653a6cba5be8146fac9ada3c"
  },
  "catalog": {
    "$oid": "653a6cde5be8146fac9ada40"
  },
  "translations": {
    "en": {
      "name": "The swamp counter"
    }
  },
  "description": {
    "short": {
      "markdown": "Un magasin *très* particulier"
    }
  }
}

Catalog document

{
  "_id": {
    "$oid": "653a6cde5be8146fac9ada40"
  },
  "translations": {
    "en": {
      "name": "Delicious vegetables and fruits"
    }
  },
  "description": {
    "short": {
      "markdown": "De délicieux fruits et légumes"
    }
  }
}