Implement custom identity query #41
Labels
No labels
authentication
backlog
bug
dashboard
documentation
duplicate
enhancement
good first issue
help wanted
invalid
question
refactoring
wontfix
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: markus/next-ory#41
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Description
Right now, querying for an identity using the identifier is using Kratos' List Identities endpoint with the experimental
preview_credentials_identifier_similar
query param. This endpoint doesn't provide the search features I would want for searching an identity.It basically matches using a
startsWith(<query>)
instead of an=== query
.This is why I will implement a custom query function by directly connecting to the Kratos DB using Drizzle ORM. With that I can query on identitfiers, credentials, traits and more and provide a reliable query to find an identity.
The query will have to be tested on big datasets to make sure it is fast and also doesn't slow down Kratos.