-
Notifications
You must be signed in to change notification settings - Fork 1
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
Partial string search support #43
base: main
Are you sure you want to change the base?
Conversation
Basic auth params added
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.
Can you please separate the auto formatting changes from the meaningful code changes here? It makes it pretty time intensive to review when they're combined
@@ -93,4 +93,4 @@ | |||
"peerDependencies": { | |||
"axios": "^0.27.2" | |||
} | |||
} | |||
} |
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.
nit: Can you re-add the newline at the end of this file please?
import { Mapper } from './mapping/Mapper'; | ||
import type { SklEngineOptions } from './SklEngineOptions'; | ||
import type { FindOperator } from './storage/FindOperator'; | ||
import type { FindAllOptions, FindOneOptions, FindOptionsWhere } from './storage/FindOptionsTypes'; | ||
import type { |
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.
Thanks for cleaning up these imports!
@@ -55,11 +66,13 @@ import { SKL, SHACL, RDFS, SKL_ENGINE, XSD, RDF } from './util/Vocabularies'; | |||
|
|||
export type VerbHandler = <T extends OrArray<NodeObject> = OrArray<NodeObject>>( | |||
params: JSONObject, | |||
verbConfig?: VerbConfig, | |||
verbConfig?: VerbConfig |
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.
nit: We prefer the trailing comma here
@@ -0,0 +1,21 @@ | |||
export class Logger { |
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.
Thanks for adding this. We can make it better over time for example by adding winston
.
Looks like there are a couple linter items here. You can eslint ignore the one about console.log
Please rebase with |
There are still tons of auto-formatting changes in |
contains
operator for partial string match in queries.