-
Notifications
You must be signed in to change notification settings - Fork 2
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
feat: Algolia Removal #23
Conversation
return { | ||
type: 'universal_profile', | ||
name: hitAsUp.hasProfileName ? hitAsUp.LSP3Profile.name : null, | ||
address: hit.objectID, | ||
name: hitAsUp.name !== '' ? hitAsUp.name : null, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Considering that UPs may have names to be absolutely anything if those are set outside of our mobile app or extension should we trim the name to be sure it doesn't contain only whitespace characters? 🤔
Or is it already done and here we get the trimmed version?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thats a good idea, but let me check and confirm
* Initial graph client impl * Fetching logic * Generalize types * Validate graph env * Trim name Signed-off-by: Wolmin <[email protected]>
Description and Related Issue(s)
This PR removes Algolia as a dependency from the project and replaces it with a graph indexer for searching profiles.
Breaking or Incompatible Changes
See Checklist for new ENVs
Additional Information
[Include any additional information, context, or screenshots that may be helpful for reviewers.]
Checklist for PR author