Uploaded image for project: 'Java Driver'
  1. Java Driver
  2. JAVA-4931

Add additional SearchOperator helper methods for the rest of the Atlas Search operators

    • Type: Icon: New Feature New Feature
    • Resolution: Unresolved
    • Priority: Icon: Minor - P4 Minor - P4
    • None
    • Affects Version/s: None
    • Component/s: Builders
    • Labels:
    • Hide

      1. What would you like to communicate to the user about this feature?
      2. Would you like the user to see examples of the syntax and/or executable code and its output?
      3. Which versions of the driver/connector does this apply to?

      Show
      1. What would you like to communicate to the user about this feature? 2. Would you like the user to see examples of the syntax and/or executable code and its output? 3. Which versions of the driver/connector does this apply to?

      There are several Atlas Search query operators that are not implemented with first class support in the Java driver. For example, the `phrase` operator. Ideally it could work like this:

                  Bson search_stage = search(
                          SearchOperator.compound()
                                  .filter(Arrays.asList(SearchOperator.text(fieldPath("genres"), "Drama")))
                                  .must(Arrays.asList(SearchOperator.phrase(fieldPath("cast"), "keanu reeves")))
                  );
      

      Whereas right now, one must know the JSON structure of the operator syntax and use the `.of()` escape hatch like this:

                  Bson search_stage = search(
                          SearchOperator.compound()
                                  .filter(Arrays.asList(SearchOperator.text(fieldPath("genres"), "Drama")))
                                  .must(Arrays.asList(SearchOperator.of(new Document("phrase", new Document("query", "keanu reeves").append("path", fieldPath("cast"))))))
                  );
      

      https://www.mongodb.com/docs/atlas/atlas-search/operators-and-collectors/

            Assignee:
            Unassigned Unassigned
            Reporter:
            erik.hatcher@mongodb.com Erik Hatcher
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated: