Uploaded image for project: 'MongoDB for IntelliJ Plugin'
  1. MongoDB for IntelliJ Plugin
  2. INTELLIJ-165

when two queries are in the same method, only the first query seems to be parsed

    • Type: Icon: Bug Bug
    • Resolution: Unresolved
    • Priority: Icon: Major - P3 Major - P3
    • None
    • Affects Version/s: None
    • Component/s: None
    • Environment:
      OS:
      node.js / npm versions:
      Additional info:
    • 3
    • Developer Tools

       public List<Document> queryMoviesByYear(String year) {
              Bson match = Aggregates.match(Filters.eq("year", year));
              Bson group = Aggregates.group("newField",
                  Accumulators.avg("test", "$year"),
                  Accumulators.sum("test2", "$year"),
                  Accumulators.bottom("field", Sorts.ascending("year"), "$year")
              );
              Bson project = Aggregates.project(Projections.fields(Projections.include("year", "plot")));
              Bson sort = Aggregates.sort(Sorts.orderBy(Sorts.ascending("asd", "qwe")));
      
              var r = client
                  .getDatabase("sample_mflix")
                  .getCollection("movies")
                  .aggregate(List.of(match, group, project, sort))
                  .into(new ArrayList<>());
      
              var w = client
                  .getDatabase("ggggg")
                  .getCollection("comments")
                  .aggregate(List.of())
                  .into(new ArrayList<>());
      
              return w;
          }
      

            Assignee:
            Unassigned Unassigned
            Reporter:
            kevin.mas@mongodb.com Kevin Mas Ruiz
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated: