-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create search functionality #9
Comments
I'll do this |
@adrianmcli, is results filtering implemented in the backend? |
Yes, the API essentially spits out a big JSON object. However, it's not so big that the frontend can't filter it pretty quickly. However, the only info in the JSON you can search for is the issue titles. Happy to discuss how best to implement this search. P.S. To be honest, I think for this feature to be really useful, a list of keywords need to be generated per-repo (on the backend side) as well as per-issue. We can either use RAKE (see #11) or an LLM to do this. |
Okay, was thinking of implementing multiple search queries like repo:, title:, author. I find it really hard to work with the API in dev environment, even CORS won’t allow me to access the API. |
Ah yeah, that's unfortunate. I wonder if we can create a test harness so you can easily query GitHub in the dev environment, and work on tweaking the query to get what you need. If you have a good idea, I'd be happy to merge that. But maybe we should talk about that in a separate issue. |
Ok |
Overview
Allow users to search the front-end for issues that best suit their skills
The text was updated successfully, but these errors were encountered: