Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6194793
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T03:21:24+00:00 2026-05-24T03:21:24+00:00

Goal : I want to allow the user to search for a document by

  • 0

Goal:

I want to allow the user to search for a document by ID, or allow other text-based queries.

Code:

l_search_results = list(
    cll_sips.find(
        {
            '$or': [
                {'_id': ObjectId(s_term)},
                {'s_text': re.compile(s_term, re.IGNORECASE)},
                {'choices': re.compile(s_term, re.IGNORECASE)}
            ]
        }
    ).limit(20)
)

Error:

<Whatever you searched for> is not a valid ObjectId

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T03:21:25+00:00Added an answer on May 24, 2026 at 3:21 am

    s_term needs to be a valid object ID (or at least in the right format) when you pass it to the ObjectId constructor. Since it’s sometimes not an ID, that explains why you get the exception.

    Try something like this instead:

    from pymongo.errors import InvalidId
    
    or_filter = [
        {'s_text': re.compile(s_term, re.IGNORECASE)},
        {'choices': re.compile(s_term, re.IGNORECASE)}
    ]
    
    try:
        id = ObjectId(s_term)
        or_filter.append({ '_id': id })
    except InvalidId:
        pass
    
    l_search_results = list(
        cll_sips.find({ '$or': or_filter }).limit(20)
    )
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

My ultimate goal is to allow a user to select what directories they want
goal : I want to place a text after the submit button using hook_form_alter.
My Goal: i want to create an horizontal list of images. when mouse is
My goal here is to make a button. I want the text to sit
Here's my list that I want to expand/collapse: My goal is simply to toggle
The goal: Allow user to turn on and off different layers of data; and
Goal: Allow a user to authentication with Facebook into an iOS application which requires
Right now I have two activities. My goal is to allow the user to
Goal: Don't want the user to make changes in the program's size. Problem: Don't
My goal is to allow the user to enter order header and detail data

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.