Skip to content

Commit

Permalink
explicit query parameter naming
Browse files Browse the repository at this point in the history
  • Loading branch information
VargaJoe committed Oct 30, 2023
1 parent 8f35823 commit fb95a93
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/sn-query/src/QueryExpression.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ export class QueryExpression<TReturns> extends QuerySegment<TReturns> {
* @param {string} explicitQuery The Query string
* @returns { QueryOperator<TReturns> } The Next query operator (fluent)
*/
public explicitQuery<TNewType>(newTypeAssertion: string) {
this.stringValue = `${newTypeAssertion}`
public explicitQuery<TNewType>(explicitQuery: string) {
this.stringValue = `${explicitQuery}`
this.segmentType = 'explicitQuery'
return this.finialize<TNewType>()
}
Expand Down

0 comments on commit fb95a93

Please sign in to comment.